Skip to content

iamkirankumaryadav/Conda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 

Repository files navigation

Anaconda

Anaconda Environment

Find all Environments

conda info --envs
conda env list

Update Entire Conda

conda update conda
conda update --all

Create New Environment

conda create --name Environment_Name

Activate Environment

conda activate Environment_Name

Install Package in New Environments

conda install ipykernel jupyter pandas numpy matplotlib seaborn bottleneck numexpr

Install Kernel in New Environments

python -m ipykernel install --user --name kernel_name

Uninstall Kernel from Environments

jupyter kernelspec uninstall kernel_name

Deactivate Environment

conda deactivate

Remove Environment ( --all : Every Installed Packages )

conda remove --name Environment_Name --all

SSL Verification

In case if SSL is not allowing to create a new environment then set the SSL verification to no

conda config --set ssl_verify no

Releases

No releases published

Packages

No packages published