Skip to content

Instantly share code, notes, and snippets.

@fischerscode
Created October 25, 2023 12:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fischerscode/37979fc39ae1e61f604667143146bd13 to your computer and use it in GitHub Desktop.
Save fischerscode/37979fc39ae1e61f604667143146bd13 to your computer and use it in GitHub Desktop.
Installing Miniconda

Installation

  1. Installiere Miniconda
  2. Öffne die Eingabeaufforderung und teste mit conda -V die Installation.
  3. Erstelle eine neue Python Testumgebung: conda create --name python-lernen
  4. Aktiviere die Umgebung: conda activate python-lernen
  5. Installiere JupyterLab: conda install -c conda-forge jupyterlab
  6. Starte JupyterLab: jupyter lab
    • Es müsste sich automatisch ein Browserfenster öffnen. (manuell)
  7. Öffne Links einen beliebigen Ordner und Erstelle mit grafik -> grafik ein Jupyter Notebook.

Nutzung

  • In Zelle kannst du deinen Code schreiben und mit Strg + Enter kannst du diese ausführen.
  • Mit Strg + S kannst du das Notebook im zuvor ausgewählten Ordner speichern.
  • LupyterLab erneut öffnen: Schritte: 2 -> 4 -> 6 -> Ordner auswählen + Datei Öffnen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment