错误:命令“ x86_64-linux-gnu-gcc”失败,退出状态为1扭曲的Django通道

时间:2019-02-22 20:47:50

标签: python ubuntu pip ubuntu-16.04

我正在本地计算机上运行python3.7 django项目,该项目正试图在Digital Ocean上的Ubuntu 16.04 python 3.6.8 VM上运行。

我已经git pull创建了GitHub存储库并运行

pip3 -r requirements.txt(我之前没有遇到过麻烦)

,现在出现此错误。它来自运行异步聊天功能的channels安装。 Twisted中必须有一些名为channels的软件包,它会引发此错误。

我已经尝试过所有我在stackoverflow上都能找到的建议

sudo apt-get install gcc

pip install --upgrade setuptools

pip install channels

不停地前进,而没有任何作用。

我已经尝试了this question的所有建议,但错误仍然存​​在。

locate Python.h给出/usr/include/python3.5m/Python.h
但是,当我运行python3.6 +时,我尝试了sudo apt-get install python3-dev,但没有任何改变。

有人可以帮我吗?

回溯

  src/twisted/test/raiser.c:4:20: fatal error: Python.h: No such file or directory
    compilation terminated.
    error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

    ----------------------------------------
Command "/home/user/Env/xxxx/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-mz9mlgj2/Twisted/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-record-nxctp0zd/install-record.txt --single-version-externally-managed --compile --install-headers /home/user/Env/xxxx/include/site/python3.6/Twisted" failed with error code 1 in /tmp/pip-install-mz9mlgj2/Twisted/

0 个答案:

没有答案