我试图没有成功安装jupyter笔记本的一些扩展,但无法弄清楚如何做到这一点。 所以基本上我想在我的笔记本中检查pep8代码。 我查了这篇文章: Verifying PEP8 in iPython notebook code
但是{@ 1}}已弃用,因此我使用了
%install_ext
所以我得到了:
jupyter nbextension install https://raw.githubusercontent.com/SiggyF/notebooks/master/pep8_magic.py --user
从现在开始,我无法正常工作。 我试过了:
Copying: /tmp/tmpw74yl7m2/pep8_magic.py -> /home/louis/.local/share/jupyter/nbextensions/pep8_magic.py
To initialize this nbextension in the browser every time the notebook (or other app) loads:
jupyter nbextension enable <the entry point> --user
没有成功。
有人可以解释一个简单的方法来使它工作,我错过了jupyter扩展吗?
谢谢!
答案 0 :(得分:2)
我手动从链接复制文件,然后添加到/.ipython/extensions(或/ nbextensions)并加载到笔记本中:%load_ext pep8_magic
目前正在测试,但对我来说很好看