conda list
conda create --name <env name>
conda info --envs
conda remove --name <env name> --all
conda activate <env name>
conda deactivate
conda activate <env name>
conda env export > environment.yml
conda list -n <env name> -r
conda install --revision <revision-num>
conda activate
conda init --reverse --all
rm -rf ~/anaconda3
rm -rf ~/miniconda3
https://docs.anaconda.com/free/anaconda/install/uninstall/ https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html
Great overview, oriented for MatLab Users converting to Python
DataFrame
:::{style=“font-size:12pt;”}
make sure you have already installed
ffmpeg gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly
conda create -n cv
conda activate cv
conda install pip
conda install -y jupyter matplotlib numpy scipy
conda install -y -c conda-forge opencv
jupyter lab
Open and run your code
Delete your environment
conda remove --name cv --all