当我尝试为我的应用程序安装flask-bcrypt库时,它会抛出这个错误:
创建build / temp.linux-x86_64-2.7
creating build/temp.linux-x86_64-2.7/bcrypt
x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c bcrypt/bcrypt.c -o build/temp.linux-x86_64-2.7/bcrypt/bcrypt.o
x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c bcrypt/bcrypt_pbkdf.c -o build/temp.linux-x86_64-2.7/bcrypt/bcrypt_pbkdf.o
x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c bcrypt/bcrypt_python.c -o build/temp.linux-x86_64-2.7/bcrypt/bcrypt_python.o
bcrypt/bcrypt_python.c:18:20: fatal error: Python.h: No such file or directory
#include "Python.h"
^
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
如何解决? - 提前谢谢!
答案 0 :(得分:7)
如果您在安装Python-dev后遇到问题,那么请安装Foreign函数接口。多数民众赞成我能够安装brypt:
sudo apt-get install libffi-dev
答案 1 :(得分:3)
sudo apt-get install python-dev
答案 2 :(得分:1)
根据您的配置,您可能需要安装python3-dev
包。
答案 3 :(得分:0)
您需要安装python-dev
软件包才能构建Python扩展。
答案 4 :(得分:0)
您没有提及您正在使用的操作系统,但您需要安装Python-dev。
假设Ubuntu:
sudo apt-get install python-dev