Metainformationen zur Seite
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
|
start:linux:debian:jupyter [2020/11/08 23:22] wikiadmin |
start:linux:debian:jupyter [2020/11/08 23:47] (aktuell) wikiadmin [Installation] |
||
|---|---|---|---|
| Zeile 12: | Zeile 12: | ||
| ===== Installation ===== | ===== Installation ===== | ||
| + | Folgende Anleitungen werden hier zusammengeführt. | ||
| - | {{https:// | + | 1. {{https:// |
| + | 2. {{https:// | ||
| + | 3. {{https:// | ||
| + | |||
| + | 4. {{https:// | ||
| + | |||
| + | 5. {{https:// | ||
| + | |||
| + | Hier werden die wichtigsten Schritte nochmals aufgeführt. | ||
| + | |||
| + | ==== Installtion von Python ==== | ||
| + | |||
| + | <code C#> | ||
| + | # Install Python & Python-dev | ||
| + | sudo apt install python3-pip python3-dev | ||
| + | |||
| + | # Update PIP | ||
| + | pip3 install --upgrade pip | ||
| + | |||
| + | # Nützliche Software Packete installieren | ||
| + | pip3 install pandas | ||
| + | pip3 install numpy | ||
| + | pip3 install matplotlib | ||
| + | pip3 install scrapy | ||
| + | |||
| + | # Install Jupyter Notebooks | ||
| + | pip3 install jupyter | ||
| + | |||
| + | # | ||
| + | </ | ||