conda create --name <new_env_name>
conda create --name <new_env_name> python=3.7
conda activate <env_name>
conda deactivate
conda info --envs
conda remove --name <env_name> --all
conda update -n base -c defaults conda
conda update --all
conda clean -a
also see: https://docs.conda.io/projects/conda/en/latest/commands/clean.html
/usr/local/miniconda3/envs
Wenn eine Python Bibliothek nicht im Standardverzeichnis von Conda gepflegt wird, kann es notwendig sein weitere Channel für die Installation zu konfigurieren.
Hierzu muss in der Conda-Bash der folgende Befehl ausgeführt werden: conda config --append channels <Channelname>
Den passenden Channel findet man unter https://anaconda.org
Beispiel für die Bibliothek geopPy: https://anaconda.org/search?q=geopy
conda config --set auto_activate_base false
chmod +x Downloads/Miniconda3-latest-Linux-x86_64.sh
./Downloads/Miniconda3-latest-Linux-x86_64.sh
.condarc
Datei folgendes einfühen (und darauf achten, dass der Key ssl_verify
nicht doppelt ist), diese Datei liegt unter C:\Users\<User>
proxy_servers: http: http://user:pass@corp.com:8080 https: https://user:pass@corp.com:8080 ssl_verify: False