windows下pycharm 窗口安装Ipython

1)首先,win+R打开cmd窗口,
2)切换到python安装路径 cd C:\Users\tsl\AppData\Local\Programs\Python\Python35\Scripts>
3)执行easy_install.exe pip
4)运行pip –version查看安装版本
5)安装ipython 命令:pip install jupyter
6) 安装其他的包
a)下载安装 pyzmq, 在这里不建议使用pip, pip对pyzmq支持不太好,装不上。我尝试使用easy_install
c:>easy_install.exe pyzmq
b)下载安装 jinja2,
c:>easy_install.exe jinja2
c)下载安装 tornado,
c:>easy_install.exe tornado
7)安装mathjax,数学符号、公式
from IPython.external.mathjax import install_mathjaxinstall_mathjax()
8)在win+R界面下cd到下面木库:C:\Users\tsl\AppData\Local\Programs\Python\Python35\Scripts>Ipython.exe Notebook
即可打开,右上角new,新建py文件即可。

猜你喜欢

转载自blog.csdn.net/sinat_26566137/article/details/80867679