使用pip安装笔记本时出错

时间:2018-02-04 13:40:30

标签: python linux installation pip jupyter-notebook

注意:我在linux上(ubuntu,mint)

我正在尝试安装jupyter。但经过一番搜索,我意识到我在尝试安装jupyter时遇到的错误是笔记本电脑。

所以这是我尝试使用sudo pip install notebook安装笔记本时遇到的错误。

Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-EKmj0F/scandir/setup.py';
f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();
exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-OB5xPr-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-EKmj0F/scandir/

如果您希望herepip install notebook的整个输出。

提前感谢您的答案。

这是错误消息的相关部分:

_scandir.c:14:20: fatal error: Python.h: No such file or directory
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

1 个答案:

答案 0 :(得分:1)

您需要Python标头:

sudo apt-get install python-dev

您的安装过程尝试使用gcc编译扩展程序,您似乎错过了必要的权限。