Jupyter 安装

Jupyter 安装

每次我尝试使用安装 jupyter

pip3 安装 jupyter

我明白了

Command /usr/bin/python3.5 -c "import setuptools, tokenize;__file__='/tmp/pip-build-ig1277kf/pyzmq/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-wp_h3lue-record/install-record.txt --single-version-externally-managed --compile --user failed with error code 1 in /tmp/pip-build-ig1277kf/pyzmq
Storing debug log for failure in /home/tahir-imanov/.pip/pip.log

问题是什么?


这是完整的输出...

答案1

仅从浏览日志来看,它似乎缺少标题zmq。你sudo apt-get install libzmq-dev先试过了吗?

实际上,它看起来好像有一个python3-zmq包,也许先安装它就可以pip3 install jupyter继续。

相关内容