Ubuntu study notes 01

1. View the instructions for all existing environments:
conda env list
conda info --env

2. Instructions to activate the specified environment:
source activate *** (environment name)
conda activate *** (environment name)

3. Check the opencv version command in the environment:
conda list|grep -i opencv

4. Check the version command of python in the environment:
python -V
python --version

5. Copy the environmental instructions in
conda : conda create -n BBB --clone AAA

Guess you like

Origin blog.csdn.net/LemonShy2019/article/details/113932444