On this page
How to Setup a Python Environment?
-
Install Miniconda. Choose “yes” when the installation process asks whether to add
condato PATH. Leave other settings as default. -
Create an python environment named
gr.1 2conda create -n gr python=3.11 conda activate gr -
You’re now in a clean python environment. Run
python --versionthen you’ll get Python 3.11.*.
- Remember to run
conda activate grevery time you enter a terminal to enter the environment.