Getting started with conda
Conda is a package manager and environment manager.
which conda
conda --version
Installing conda
Please follow the instruction given here.
Updating conda
conda update conda
Creating environment
conda create -n easifem
or
conda create --name easifem
Here,
easifem
is the name of virtual environment.
Then we can activate the environment by
conda activate easifem
To get list of all environment:
conda info --envs
We can create an environment with specific python:
conda create --name easifem_py39 python=3.9
Searching packages
conda search easifem
Installing packages
conda install easifem
We can check the installed packages by
conda list