-
Notifications
You must be signed in to change notification settings - Fork 1
CONDA
Lavadav edited this page Oct 12, 2022
·
4 revisions
conda create -n <env_name>
eg: conda create -n busco
# Conda with specific python version
eg: conda create -n busco python==3.7.5
conda activate <env_name>
conda install <package_name==version>
eg: conda install numpy==1.11
conda list -n myenv
conda env list
# Asterisk (*) is present infront of current environment you are in.
conda env remove -n <env_name>
conda list --revisions
conda install --rev <revision no. you want to restore>