Python: Anaconda: Unterschied zwischen den Versionen
Flinh1 (Diskussion | Beiträge) (→Jupyter Notebook starten) |
Flinh1 (Diskussion | Beiträge) (→Jupyter Notebook) |
||
Zeile 38: | Zeile 38: | ||
... copy everything that follows >>> in a cell in your Jupyter Notebook; that is, you exclude >>>. To run code, make sure the cell is highlighted, then press Shift + Enter. You may also press the Run button at the top of the Notebook, but this takes more time. Start thinking like a developer and use keystrokes instead. | ... copy everything that follows >>> in a cell in your Jupyter Notebook; that is, you exclude >>>. To run code, make sure the cell is highlighted, then press Shift + Enter. You may also press the Run button at the top of the Notebook, but this takes more time. Start thinking like a developer and use keystrokes instead. | ||
+ | |||
+ | ---- | ||
+ | === Arbeit mit Visual Studio Code === | ||
+ | |||
+ | Creating a new notebook | ||
+ | Open the command palette with the shortcut: Ctrl/Command + Shift + P | ||
+ | |||
+ | Search for the command Create New Blank Jupyter Notebook | ||
---- | ---- |
Version vom 4. Dezember 2020, 08:23 Uhr
Inhaltsverzeichnis
Allgemeines
Installation
Download von der Seite
Installation in Ubuntu: Die Installation benötigt keine root-Rechte und das Programm installiert sich im Verzeichnis des Benutzers.
bash Anaconda3-2020.11-Linux-x86_64.sh (Eventuell den Dateinamen und den Namen der heruntergeladenen Datei ersetzen.)
Der Anaconda-Navigator wird im bin-Verzeichnis der Installation gestartet:
./navigator-updater
Jupyter Notebook
Jupyter Notebook starten
- Locate and open your Anaconda Navigator.
- Search for Jupyter Notebook in Anaconda Navigator and click it.
- A new window should open in the web browser of your choice.
Beim Start von Jupyter Notebook öffnet sich die Verzeichnisansicht http://localhost:8888/tree
... copy everything that follows >>> in a cell in your Jupyter Notebook; that is, you exclude >>>. To run code, make sure the cell is highlighted, then press Shift + Enter. You may also press the Run button at the top of the Notebook, but this takes more time. Start thinking like a developer and use keystrokes instead.
Arbeit mit Visual Studio Code
Creating a new notebook Open the command palette with the shortcut: Ctrl/Command + Shift + P
Search for the command Create New Blank Jupyter Notebook
Troubleshooting
| |