我有点沮丧。在我的Linux计算机上:作为对实际工作的排练,我尝试使用cx_Freeze编译一个非常简单的程序。但是首先我必须安装它。我正在使用python 3.5。当我输入“ python pip install cx_Freeze”时,我在终端中显示了几行,最后出现了错误:
<other lines>
running build_ext
building 'cx_Freeze.util' extension
creating build/temp.linux-x86_64-2.7
creating build/temp.linux-x86_64-2.7/source
x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/usr/include/python2.7 -c source/util.c -o build/temp.linux-x86_64-2.7/source/util.o
source/util.c:6:20: fatal error: Python.h: No such file or directory
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
我考虑过一些事情:
-可能是未安装gcc。如果打开“软件管理器”并搜索“ gcc”,则可以看到它已安装。 (“ GNU C编译器”:绿色复选)
-似乎无论如何我都不想安装python 2.7。如何使其与3.5一起使用?这可能是为什么它似乎缺少某些目录的原因吗?
先谢谢Jan