Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 295 Bytes

creating_virtualenv_with_conda.md

File metadata and controls

10 lines (10 loc) · 295 Bytes
$ conda -V
$ conda update conda
$ conda search "^python$"
$ conda create -n yourenvname python=x.x [anaconda]
    # anaconda is optional option when given installs anaconda packages
$ conda activate yourenvname
$ conda install -n yourenvname [package]
$ conda remove -n yourenvname --all