Benedict Thekkel
mkdir -p ~/miniconda3 wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3 rm ~/miniconda3/miniconda.sh
~/miniconda3/bin/conda init bash
conda create --name myenv
Example
conda create --name myenv python=3.8 numpy pandas
conda activate myenv
conda deactivate
conda env list
conda install scipy
conda update numpy
conda remove scipy
conda env remove --name myenv
conda search beautifulsoup4
Conda channels are locations where packages are stored. By default, Conda uses the defaults channel, but you can add others like conda-forge.
conda config --add channels conda-forge
conda install -c conda-forge opencv
conda config --show channels
!conda config --show channels
channels: - defaults