我正在运行ubuntu 16.我安装了python 2.7和3.5。我想为python3安装cx_freeze
最新版本。我从他们的网站下载了该软件包但无法运行setup.py
文件,因为它总是给我错误。我也安装了pip3,但它仍然不适合我。所有在线答案均适用于cx_freeze
的旧版本,因此新版本的新答案将会有所帮助。
我使用以下命令安装和升级pip3:
sudo -H install --upgrade pip
然后我尝试用:
安装cx_freezepip3 install cx_Freeze .
然后我收到以下错误:
Command "/usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-ngco46uq/cx-Freeze/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-q3n3cd2r-record/install-record.txt --single-version-externally-managed --compile"
failed with error code 1 in /tmp/pip-build-ngco46uq/cx-Freeze/
也有人可以告诉我任何其他方法吗?
答案 0 :(得分:0)
尝试使用以下方法安装Pip3:
sudo apt-get install python3-pip
如果你有Python 2.7,你可以尝试像py2exe
这样的替代品