Answered by : jeremy-tandjung
conda info --envs
conda env list
Source : | Last Update : Wed, 01 Apr 20
Answered by : filthy-fowl-5fhw20pphorz
conda create --clone py35 --name py35-2
Source : | Last Update : Fri, 11 Dec 20
Answered by : encouraging-echidna-9gb7dlr33p5l
# using pip
pip install -r requirements.txt
# using Conda
conda create --name <env_name> --file requirements.txt
Source : https://stackoverflow.com/questions/48787250/set-up-virtualenv-using-a-requirements-txt-generated-by-conda | Last Update : Wed, 16 Sep 20
Answered by : alpha-virgo
conda create -n myenv python=3.6
Source : https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html | Last Update : Thu, 27 Feb 20
Answered by : alpha-virgo
conda env list
Source : https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html | Last Update : Thu, 27 Feb 20
Answered by : combative-caracal-g1qs2pknisby
conda env list
Source : | Last Update : Sun, 30 Aug 20
Answered by : stupid-stork-ti5co4s2b4gv
conda env update -n my_env --file ENV.yaml
Source : https://stackoverflow.com/questions/58272405/how-to-install-packages-from-yaml-file-in-conda | Last Update : Thu, 07 May 20