Conda
Installation
Miniconda installation guide: doc
Environment Management
Create environment
conda create --name myenv python=3.7List environments
conda info -eRemove environment
conda remove -n myenv --allRename environment (work around)
conda create --name new_name --clone old_name
conda remove --name old_name --allUpdate environment
Clean cache
Don't activate base environment automatically
Hide environment info
Update installation location
Move installation folder
Download conda installer
Run script with
-uparameter
Launch shell with Conda environment
PowerShell
Use Conda with Visual Studio Code
Numpy DLL not found
Reasons:
Not launching vscode from anaconda-prompt. Environment variable is not set.
Installing numpy using pip. Anaconda environment uses a different installation folder. Should install numpy using command
conda install numpy.
Last updated
Was this helpful?