Please enable JavaScript.
Coggle requires JavaScript to display documents.
Anaconda (:red_flag: Conda Env
For creating custom Env's.…
Anaconda
:red_flag: Conda Env
- For creating custom Env's.
- Creating an Env
`conda create --name <project name goes here>
python = <version no.> package_name`
- Activating the Env
conda activate <project_name or app>
:heavy_check_mark: to see if successful
- Deactivating Env
deactivate
- :eye: Created Env
conda env list
- Switching b/w Env's
activate <env_name>
-
- Removing Env's
conda env remove --name <env_name>
:red_flag:Conda :package: Manager
- Useful for installing non- :snake: :package:
- & Dependencies.
-
conda list
- All essential :package: including those listed in pip
-
Virtualenv
-
pip install virtualenv
-
virtualenv <env name>
- Activation: env-path/scripts/activate
- Deactivate: env-path/scripts/deactivate