Cheatsheet
Use anaconda shell to install Virtual Environment.
Get Python Version
Install V-environment with Python Version
conda create -n ENV_NAME python=3.8.8
Activate Virtual Environment
Deactivate Virtual Environment
Install Packages from requirements.txt
conda install --file requirements.txt
Create "requirements.txt"
conda list -e > requirements.txt
Install Package
Install Package from Conda Forge
conda install -c conda-forge django=4.0
Re-Install Python
conda uninstall python conda install python=3.8
Conda Install Parameters
-
k, --insecure
Allow conda to perform "insecure" SSL connections and transfers. Equivalent to setting 'ssl_verify' to 'false'.
-
y, --yes
Do not ask for confirmation.