It seems that Microsoft Visual C ++ Compiler for Python 2.7 is required if you want to install it with matplotlib or pip, so download it from the following and install it from msi
http://www.microsoft.com/en-us/download/details.aspx?id=44266
If you don't have it installed, you will get the following error when you run pip install matplotlib
C:\Python27\Lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'define_macros'
warnings.warn(msg)
error: Microsoft Visual C++ 9.0 is required (Unable to find vcvarsall.bat). Get it from http://aka.ms/vcpython27
Premise that python and pip are included
pip install ipython jupyter matplotlib
Maybe ipython isn't needed
When you execute a command, jupyter starts with the folder where you executed the command as the root and is displayed in the browser. If you use it only locally, this is fine.
jupyter notebook
Now you can draw figures with markdown, TeX and matplotlib on your browser.
Write where to put the jupyter settings Reference
> jupyter --config-dir
C:\Users\<USERNAME>\.jupyter
Recommended Posts