when I try to install Flask-bcrypt it throws me error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
when I try to install Flask-bcrypt it throws me error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
当我尝试为我的应用程序安装 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
如何解决??
-提前致谢!
您需要安装 python-dev
个包来构建 Python 个扩展。
您没有提到 OS 您正在使用什么,但您需要安装 Python-dev。
假设 Ubuntu:
sudo apt-get install python-dev
sudo apt-get 安装 python-dev
根据您的配置,您可能需要安装 python3-dev
软件包。
如果您在安装 Python-dev 后发现遇到问题,请安装 Foreign 函数接口。那是我能够安装 brypt 的时候:
sudo apt-get 安装 libffi-dev
当我尝试为我的应用程序安装 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
如何解决?? -提前致谢!
您需要安装 python-dev
个包来构建 Python 个扩展。
您没有提到 OS 您正在使用什么,但您需要安装 Python-dev。
假设 Ubuntu:
sudo apt-get install python-dev
sudo apt-get 安装 python-dev
根据您的配置,您可能需要安装 python3-dev
软件包。
如果您在安装 Python-dev 后发现遇到问题,请安装 Foreign 函数接口。那是我能够安装 brypt 的时候:
sudo apt-get 安装 libffi-dev