setup pip, PyMySQL,Jupyter in python 3.3


https://bootstrap.pypa.io/get-pip.py,下载此文件,并保存到d:\\tmp目录下。

然后运行python d:\\tmp\\get-pip.py,  这样就把pip安装上了,接着安装其他扩展就非常方便了。

运行pip install PyMySQL, 即安装PyMySQL,

import pymysql   ,把PyMySQL包加载进来。

运行pip install jupyter  ,把jupyter扩展安装。

然后运行jupyter notebook  ,即打开jupyter环境。


上面所有运行命令,都是在windows cmd 窗口里执行的。

你可能感兴趣的:(python,jupyter)