Schlagwort: Jupyter

  • Wissenschaftliche Arbeit *.md PDF generieren

    Dieses Powershell Skript scannt Subdirectories nach *.md Files und generiert ein PDF daraus, dass es mit dem selben Dateinamen als PDF in einen Ordner _PDFs legt. $currendDir=(Get-Item -Path „.\“ -Verbose).FullName #repeat for every *.md file #create target dir if it doesn’t exist New-Item -ItemType Directory -Force -Path ./_PDFs $currendDir=(Get-Item -Path „.\“ -Verbose).FullName #repeat for every…

  • Jupyter mit Tensorflow virtualenv

    Schritt 1: Tensorflow mittels virtualenv installieren Schritt 2: Jupyter installieren Dann Jupyter über virtualenv starten #tensorflow virtualenv starten source ~/tensorflow/bin/activate #jupyter notebook starten jupyter notebook Neues Notebook erstellen mit Tensorflow Hello World import tensorflow as tf import numpy as np hello = tf.constant(‚Hello, TensorFlow!‘) sess = tf.Session() print(sess.run(hello)) Zeile mit Shift+Enter ausführen Mit Tab Autovervollständigen/Autocomplete…

  • Jupyter installieren

    von

    in

    Ziemlich straight forward… #jupyter essentials sudo apt-get install -y build-essential python3-dev python3-pip #install jupyter pip3 install jupyter #install python2 kernel for jupyter python2 -m pip install ipykernel python2 -m ipykernel install –user #run notebook jupyter notebook