Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 522 Bytes

use_your_python_conda_environment.md

File metadata and controls

20 lines (14 loc) · 522 Bytes

Managing conda environments in a shared PC

If you are using python in one of the shared workstations, you must create and use your own conda environment, to avoid any incompatibility with any of the other users packages.

Create your own conda environment with your desired python version as:

     $ conda create -n [environment-name] python=x.x

To list existing environments in your PC:

     $ conda info --envs

To activate your environment:

     $ conda activate [environment-name]