User:SinggihAP: Difference between revisions
Jump to navigation
Jump to search
Line 18: | Line 18: | ||
<code>conda install package_name</code> | <code>conda install package_name</code> | ||
<i><b>Replace package_name with the name of the package you want to install.</b></i> | |||
=== List all environments: === | === List all environments: === |
Revision as of 08:52, 6 June 2025
How To Use Conda (Miniconda3)
here are some basic commands:
Create a new environment:
conda create --name myenv
Replace myenv with the name you want for your environment.
Activate an environment:
conda activate myenv
source activate myenv
Deactivate the current environment:
conda deactivate
Install a package:
conda install package_name
Replace package_name with the name of the package you want to install.
List all environments:
conda env list
Remove an environment:
conda env remove --name myenv