All Guides
Conda/Miniconda Einrichtung
Installieren Sie Miniconda fuer Python-Umgebungsverwaltung.
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 und pip Einrichtung
Installieren Sie Python und den pip-Paketmanager.
Jupyter Notebook Einrichtung
Installieren Sie Jupyter Notebook fuer interaktive Python-Entwicklung.
TensorFlow Einrichtung
Installieren Sie die Google TensorFlow ML-Bibliothek.
PyTorch Einrichtung
Installieren Sie die Meta PyTorch Deep-Learning-Bibliothek.