Setup environment
less than a minute
- Install Python 3.11 or higher.
- Ensure that all files listed in the prerequisites are placed in the same directory as your main Python script.
- Create a virtual environment by running:
For MacOS/ Linux, run:
For Window:python3.11 -m venv venv source venv/bin/activate # macOS/Linux
If “A new release of pip is available” message pops up, upgrade pip by running:python3.11 -m venv venv .\venv\Scripts\activate # Windowspip install --upgrade pip - Install dependencies inside your virtual environment by running:
pip install -r requirements.txt
You are provided with “requirements.txt” file along with the documentation.
Was this page helpful?
Provide feedback