Answers for "conda remove"

15

delete conda env

conda env remove -n ENV_NAME
Posted by: Guest on May-17-2020
9

delete conda from machine

conda install anaconda-clean   # install the package anaconda clean
anaconda-clean --yes           # clean all anaconda related files and directories 
rm -rf ~/anaconda3             # removes the entire anaconda directory

rm -rf ~/.anaconda_backup       # anaconda clean creates a back_up of files/dirs, remove it 
                                # (conda list; cmd shouldn't respond after the clean up)
Posted by: Guest on June-19-2020
6

conda create environment based on requirements.txt

# using pip
pip install -r requirements.txt

# using Conda
conda create --name <env_name> --file requirements.txt
Posted by: Guest on September-09-2020
4

How do I set Conda to activate the base environment by default?

conda config --set auto_activate_base true
Posted by: Guest on August-11-2020
0

remove package conda

conda remove -n myenv scipy
Posted by: Guest on August-20-2020
4

delete conda environment

conda remove --name myenv --all
Posted by: Guest on November-15-2019

Python Answers by Framework

Browse Popular Code Answers by Language