User:SinggihAP: Difference between revisions

From WikiAP
Jump to navigation Jump to search
Line 15: Line 15:
<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>
'#' <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:54, 6 June 2025

How To Use Conda (Miniconda3)

Create a new environment:

conda create --name myenv

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