User:SinggihAP

From WikiAP
Revision as of 12:17, 6 June 2025 by SinggihAP (talk | contribs) (Enable Python Environment)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Enable Python Environment[edit]

source path/bin/activate

How To Use Conda (Miniconda3)[edit]

Create a new environment:[edit]

conda create --name myenv

Activate an environment:[edit]

conda activate myenv
source activate myenv

Deactivate the current environment:[edit]

conda deactivate

Install a package:[edit]

conda install package_name

'#' Replace package_name with the name of the package you want to install.

List all environments:[edit]

conda env list

Remove an environment:[edit]

conda env remove --name myenv