Notes on how to use python and ipython notebook in Windows environment
Postscript (2017/02/27):
Python 3.6.0 is currently released. I checked, but there was no change in the procedure.
If you don't have a suitable one, you can use Git Bash in Git for Windows.
Install with either of the following, basically you can install jupyter with the above command
install jupyter
$ pip install -U pip
$ pip install jupyter
ipython-install notebook(Old installation method)
$ pip install -U pip
$ pip install ipython
$ pip install ipython[notebook]
$ jupyter notebook
When executed, the browser will open automatically. (Address is the default one)
Create a new notebook
Setup is now complete
With Vimmer, you can be happy with the following plugins.
A glimpse of what Jupyter (formerly IPython notebook) should be-Λlisue's blog lambdalisue/jupyter-vim-binding: Jupyter meets Vim. Vimmer will fall in love.
Disable keyboard shortcuts (firefox) Menu Wizard :: Add-ons for Firefox
Set the following at an appropriate place
%matplotlib inline
Plotting — IPython 5.0.0 documentation
Installing Jupyter Notebook — Jupyter Documentation 4.1.1 alpha documentation Install Python3, numpy, pandas, matplotlib, etc. on Windows --Qiita Starting iPython notebook --Qiita
Recommended Posts