User:SinggihAP: Difference between revisions

From WikiAP
Jump to navigation Jump to search
Created page with "= How To Use Conda (Miniconda3)= === here are some basic commands: === Create a new environment: <code>conda create --name myenv</code> === Replace myenv with the name you want for your environment. === === Activate an environment: === <code>conda activate myenv</code> <code>source activate myenv</code> === Deactivate the current environment: === <code>conda deactivate</code> === Install a package: === <code>conda install package_name</code> Replace package_name wi..."
 
Line 17: Line 17:
=== Install a package: ===
=== Install a package: ===
<code>conda install package_name</code>
<code>conda install package_name</code>
Replace package_name with the name of the package you want to install.
 
# Replace package_name with the name of the package you want to install.


=== List all environments: ===
=== List all environments: ===

Revision as of 08:50, 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

  1. 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