1. jupyter notebook插件安装
安装插件 pip install jupyter_contrib_nbextensions 用户配置 jupyter contrib nbextension install --user
2. pip安装第三方库的时候显示timed out
使用国内镜像源安装:
pip install 库名 -i https://pypi.doubanio.com/simple/
比如:
pip install numpy -i https://pypi.doubanio.com/simple/
除豆瓣源之外还有清华源:
pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple/
3. 如何打开自定义文件夹的notebook文件
- 进入你想要打开jupyter notebook的文件夹;
- 在文件夹内的空白处按住shift键不放,点击鼠标右键,点击右键目录中的“在此处打开Powershell窗口”;
- 在打开的窗口中输入“jupyter notebook”,按enter键运行,自动打开浏览器运行jupyter notebook;
- 可指定一个文件夹来存放.ipynb工作文件夹,方便管理你的文件,不用每次再重新上传需要打开的.ipynb文件了~
4. 在导入StyleFrame时报错
5. Pyecharts中,from example.commons import Faker时报错
同样是版本问题,新版本中已更改为:
from pyecharts.faker import Faker
全部评论
(0) 回帖