Dessin graphique avec jupyter (notebook ipython) + matplotlib + vagrant

environnement

Article associé

mémo d'installation python (pyenv)

Créer un environnement pour Jupyter Lab avec Docker

Lors de la création d'un environnement avec Vagrant

install matplotlib

$ pip install matplotlib

install jupyter

$ pip install jupyter

Paramètres de redirection de port avec vagrant ssh

Redirection de port pour accéder à jupyter sur vagrant à partir d'un navigateur PC.

$ vagrant ssh -- -L 8888:localhost:8888

Ou ajoutez ce qui suit au Vagrantfile

Vagrantfile


Vagrant.configure("2") do |config|
  # *snip*
  config.vm.network "forwarded_port", guest: 8888, host: 8888
  # *snip*
end

Démarrez Jupyter

--ip = 0.0.0.0 est requis pour un accès autre que localhost.

$ jupyter notebook --no-browser --ip=0.0.0.0

Ou

$ ipython notebook --no-browser --ip=0.0.0.0

Accédez à jupyter-notebook depuis votre navigateur

http://localhost:8888 Ou accéder avec l'adresse IP de vagabond http://192.168.33.10:8888

Suivez le menu déroulant en haut à droite comme suit New -> Python 3 581d5c.png Exécuter un exemple de code

%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt

x = np.arange(-3, 3, 0.1)
y = np.sin(x)
plt.plot(x, y)

9bd360.png

Si vous obtenez une erreur liée à Aucun module nommé _tkinter ou tkinter, voir ici. [Si vous utilisez matplotlib, installez d'abord le suivant](http://qiita.com/Esfahan/items/0dfe70357549f92b23da#matplotlib%E4%BD%BF%E3%81%86%E3%81%AA%E3%82%89 % E4% B8% 8B% E8% A8% 98% E3% 82% 82% E5% 85% 88% E3% 81% AB% E3% 82% A4% E3% 83% B3% E3% 82% B9% E3 % 83% 88% E3% 83% BC% E3% 83% AB)

c'est tout

[référence] L'histoire de la création d'un environnement de notebook ipython avec vagrant Lancez un notebook ipython avec une VM créée avec vagrant et accédez-y localement Que faire lorsque le graphique n'apparaît pas sur le notebook jupyter (ipython)

Recommended Posts

Dessin graphique avec jupyter (notebook ipython) + matplotlib + vagrant
Dessin graphique avec IPython Notebook
Méthode de dessin graphique avec matplotlib
Approvisionnement EC2 avec Vagrant + Jupyter (IPython Notebook) sur Docker
Utilisation d'Apache Spark avec le notebook Jupyter (notebook IPython)
[Mémo Jupyter Notebook] Afficher les kanji avec matplotlib
Sortie de cellule riche avec Jupyter Notebook (IPython)
Installer matplotlib et afficher le graphique dans Jupyter Notebook
Comment déboguer avec Jupyter ou iPython Notebook
Dessin graphique avec matplotlib
Dessiner une structure arborescente avec D3.js dans Jupyter Notebook
Graphique des données Excel avec matplotlib (1)
Utilisation de Graphviz avec Jupyter Notebook
Utiliser pip avec Jupyter Notebook
Utiliser Cython avec Jupyter Notebook
Graphique des données Excel avec matplotlib (2)
Exécutez Apache-Spark sur le notebook IPython
Utilisation de Bokeh avec IPython Notebook
Écrivez des graphiques en temps réel avec Matplotlib sur le notebook Jupyter
Autoriser les connexions externes avec le notebook Jupyter
La vie de recherche et développement avec le notebook iPython
Formatage avec autopep8 sur le notebook Jupyter
Visualisez l'arbre de décision avec le notebook Jupyter
Faites un son avec le notebook Jupyter
Dessinez un graphique lâche avec matplotlib
Utiliser Markdown avec le notebook Jupyter (avec raccourci)
Ajouter plus de noyaux avec Jupyter Notebook
Créer un environnement de notebook IPython avec boot2docker
Analyse pratique avec Pandas + notebook Jupyter
Jupyter n'affiche pas le graphique matplotlib
Utiliser nbextensions avec le notebook Jupyter d'Anaconda
Jupyter Notebook n'affiche pas le graphique matplotlib
Je veux écrire un blog avec Jupyter Notebook
Essayez de dessiner une distribution normale avec matplotlib
Utiliser Jupyter Lab et Jupyter Notebook avec EC2
Essayez SVM avec scikit-learn sur Jupyter Notebook
ipython + jupyter + plotly (matplotlib) Paramètres et notes d'utilisation
Comment utiliser le notebook Jupyter avec ABCI
Lier Python et JavaScript avec le notebook Jupyter
Présentation HTML "EN DIRECT" avec IPython 3.0.0-dev, IPython Notebook
Graphiques de fonctions triangulaires avec numpy et matplotlib
Dessinez un graphique avec PyQtGraph Part 1-Drawing
Créer un graphique avec des bordures supprimées avec matplotlib
Que faire lorsque le graphique n'apparaît pas sur le notebook Jupyter (IPython)
Création d'un environnement R avec Jupyter (anciennement notebook IPython) (sous OS X El Capitan 10.11.3)
Dessinez une surface plane avec un graphique 3D matplotlib
Dessinez un graphique avec des étiquettes japonaises dans Jupyter
Construire un environnement d'analyse avec Docker (jupyter notebook + PostgreSQL)
Analyse des données pour améliorer POG 2 ~ Analyse avec le notebook jupyter ~
[Python] axe limite du graphe 3D avec Matplotlib
Lire les données csv Python avec Pandas ⇒ Graphique avec Matplotlib
Conseils de dessin avec matplotlib côté serveur
Augmentez la taille de la police du graphique avec matplotlib
Activer Jupyter Notebook avec conda sur un serveur distant
Essayez d'utiliser l'environnement virtuel conda avec Jupyter Notebook
Affichage simple du graphique linéaire sur Jupyter Notebook
Remplissez la largeur du bloc-notes Jupyter pour remplir le navigateur
La base de la théorie des graphes avec l'animation matplotlib
Aligner les couleurs du graphique Matplotlib avec des couleurs similaires (carte des couleurs)