AGENDA 0. Introduction
(1) Préface -Ce contenu est la troisième partie de "[Cloud102] # 1 Commençons avec Python" Construction de Jupyter Notebook édition GCP Cloud Shell. Cliquez ici pour la partie 1: http://qiita.com/nagahisa/items/f378ff23d93119cb3c60 ・ Avec GCP Hands-on, j'aime beaucoup Cloud Shell, donc je vais rendre possible l'utilisation de Jupyter Notebook avec Cloud Shell.
(2) Informations d'origine QIITA a du contenu pour mettre Jupyter dans Ubuntu, alors changez-le en version GCP Cloud Shell et utilisez-la. Jupyter commence http://qiita.com/taka4sato/items/2c3397ff34c440044978
Si vous pouvez installer jupyter notebook sur Cloud Shell, comment accéder à http? Je ressens cela, mais il existe une fonction appelée Aperçu Web. Vérifions avec SimpleHTTPServer s'il peut être utilisé correctement.
-Démarrez SimpleHTTPServer avec le port 8080 spécifié sur l'écran noir de Cloud Shell.
python -m SimpleHTTPServer
· Ouvrez 8080 dans Aperçu Web.
· Ça a marché!
-Installez les éléments suivants en vous référant aux informations d'origine.
sudo apt-get update && sudo apt-get -y upgrade
sudo apt-get install -y python-pip libpq-dev python-dev
sudo pip install -U pip
sudo pip install ipython[notebook]
sudo apt-get install -y libpng12-dev libjpeg8-dev libfreetype6-dev libxft-dev
sudo pip install numpy pandas matplotlib seaborn scikit-learn
-Reportez-vous aux informations d'origine, générez un fichier de paramètres et décrivez ce qui suit.
c = get_config()
c.NotebookApp.ip = '*'
c.NotebookApp.open_browser = False
c.NotebookApp.port = 8080
·Commencez
jupyter notebook
・ Vérifiez le fonctionnement avec l'aperçu Web
C'est facile: sourire:
Recommended Posts