注意:我在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/
如果您希望here是pip 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
答案 0 :(得分:1)
您需要Python标头:
sudo apt-get install python-dev
您的安装过程尝试使用gcc
编译扩展程序,您似乎错过了必要的权限。