Configure Miniconda on Ubuntu: Complete Guide

After installing miniconda, you can configure it by following these steps:

  1. Open the terminal and enter the following command to activate the miniconda environment.
source ~/miniconda3/bin/activate
  1. Create a new conda environment:
conda create --name myenv
  1. Activate the new conda environment.
conda activate myenv
  1. Install the necessary packages.
conda install package_name
  1. Update conda:
conda update conda
  1. Update all installed packages.
conda update --all
  1. Add new channels.
conda config --add channels conda-forge
  1. Check installed packages.
conda list
  1. Exit the current environment.
conda deactivate

With these settings, you can manage and utilize the miniconda environment more efficiently. Hope this helps you!

bannerAds