How to use miniconda after installing it on Ubuntu?
After installing Miniconda, you can use it by following these steps:
- Open the terminal or command prompt window.
- Create a new Conda environment: You can create a new Conda environment (e.g. named myenv) using the following command:
conda create --name myenv
- Activate the Conda environment by using the following command:
conda activate myenv
- Install the necessary software packages: Use the conda command in a Conda environment to install the required software packages, such as:
conda install numpy
- You can run Python scripts or start a Jupyter Notebook in the active Conda environment.
- Exit the Conda environment: When you have finished your work, you can use the following command to exit the Conda environment:
conda deactivate
By following the above steps, you can easily use Miniconda to create and manage different Conda environments, and install the necessary packages for development or data analysis work.