Open a new tab in the fider

Enter
Command + T
in the finder.
How to check anaconda environment list

conda info -e
That’s it!
Just “conda list” to show installed packages

In a conda environment you want to confirm package list
conda listThat’s it!
How to deactivate conda (anaconda environment)

conda deactivate
That’s it!
How to create anaconda environment

If you want to create environment named “myenv”
conda create myenvThat’s it!
How to activate conda environment

If you want to activate “myenv”
conda activate myenvThat’s it!
How to install numpy in anaconda

conda install numpy
That’s it!
How to instal numpy with pipenv

pipenv install numpy
That’s it!
How to install numpy with conda

conda install numpy
That’s it!
How to install numpy with pip

pip install numpy
That’s it!