All Guides
Conda/Miniconda Setup
Install the Miniconda package and environment manager. Isolate Python environments.
Beginner10 min
Setup Steps
1. Download and install Miniconda:
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh2. Accept the installation and restart the shell:
source ~/.bashrc3. Check conda version:
conda --version4. Create a new environment:
conda create -n project python=3.125. Activate the environment:
conda activate project6. Install packages:
conda install numpy pandas scikit-learn matplotlib7. List environments:
conda env list8. Export environment:
conda env export > environment.yml9. Import environment:
conda env create -f environment.yml10. Deactivate environment:
conda deactivate11. Remove environment:
conda env remove -n projectRelated Guides
Python Setup and pip
Install the Python programming language and pip package manager.
Jupyter Notebook Setup
Install Jupyter Notebook and use the interactive Python development environment.
TensorFlow Setup
Install the Google TensorFlow machine learning library and create your first model.
PyTorch Setup
Install the Meta PyTorch deep learning library and learn basic usage.