How to Install Olaris on Windows 11
In this tutorial, we will guide you through the process of installing Olaris on Windows 11. Olaris is a machine learning framework that helps you train, deploy and manage your models.
Prerequisites
Before we begin, you will need the following:
- Windows 11 desktop or laptop
- Git (to download the code base)
- Python 3.7 or later
Step 1. Download Olaris Codebase
First, you need to download the Olaris code base. Open the Git Bash terminal and navigate to the directory where you want to download the codebase using the cd command.
cd Downloads
Clone the Olaris Gitlab repository by running the following command:
git clone https://gitlab.com/olaris/olaris-server.git
This will download the Olaris code base to your local machine.
Step 2. Create an Olaris Virtual Environment
Next, we need to create a virtual environment to install the Olaris dependencies. Open the command prompt (cmd) and navigate to the directory where you downloaded the Olaris code base.
cd Downloads\olaris-server
Create a virtual environment using the following command:
python -m venv olaris_env
This will create a virtual environment named olaris_env in the current directory.
Activate the virtual environment:
.\olaris_env\Scripts\activate
Step 3. Install Olaris Dependencies
With the virtual environment activated, it's now time to install the Olaris dependencies.
pip install -r requirements.txt
This command will install all the required dependencies.
Step 4. Start Olaris Server
Finally, we can start the Olaris server.
python main.py
This command will start the server on your local machine.
Congratulations! You have successfully installed and started the Olaris server on your Windows 11 machine. You can now start using Olaris to train, deploy and manage your models.