无法在dreamhost服务器上安装mysqlclient

gjmwrych  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(387)

我正试图在我的dreamhost共享服务器上建立一个mysql数据库,但似乎没有mysqlclient我就无法继续。当我尝试的时候 pip install mysqlclient 不管我得到什么
x86_64-linux-gnu-gcc-pthread-dndebug-g-fwrapv-o2-wall-wstrict prototypes-g-fstack protector-param=ssp buffer size=4-wformat-werror=format security-d_fortfy_source=2-fpic-dversion_info=(1,3,12,'final',0)-d_uuuversion_uuuuuuu=1.3.12-i/usr/include/mysql-i/usr/include/python3.4m-i/home/eptaba/aeromembers.com/aeromembers_env/include/python3.4m-c_mysql.c-o build/temp.linux-x86_64-3.4/mysql.o-dbig_joins=1-fno strict aliasing-g-dndebug
_c:32:20:致命错误:python.h:没有这样的文件或目录

包括“python.h”

^

编译已终止。
错误:命令“x86\u 64-linux-gnu-gcc”失败,退出状态为1
我在其他答案中看到,这些类型的问题可以通过

apt-get install python3.4-dev

但是在dreamhost的共享服务器产品上,我无法执行该命令。如果没有mysqlclient,我还能做些什么呢?

1tuwyuhd

1tuwyuhd1#

我安装了python3.6并在virtualenv中使用它而不是python3.4,从而绕过了这个问题。后来我能 pip install mysqlclient

相关问题