Python 3.12.6
Advised to use Anaconda to do this.
- Open Anaconda Command Prompt
- Create a virtual environment with Python 3.10.13.
conda create --name your_env_name python=3.10.13
- Activate the virtual environment.
conda activate your_env_name
Note: Make sure the virtual environment is activated before working on the Python code. - Deactivate the virtual environment, if done working with it.
conda deactivate
none yet
Navigate to the folder hosting this file, then type
pip install .
or
pip3 install .
If you are planning on editing the code,
delete the ./build/
path and the ./*-egg
path.