Configure Miniconda on Ubuntu: Complete Guide
After installing miniconda, you can configure it by following these steps:
- Open the terminal and enter the following command to activate the miniconda environment.
source ~/miniconda3/bin/activate
- Create a new conda environment:
conda create --name myenv
- Activate the new conda environment.
conda activate myenv
- Install the necessary packages.
conda install package_name
- Update conda:
conda update conda
- Update all installed packages.
conda update --all
- Add new channels.
conda config --add channels conda-forge
- Check installed packages.
conda list
- Exit the current environment.
conda deactivate
With these settings, you can manage and utilize the miniconda environment more efficiently. Hope this helps you!