Python 3にcx_Freezeをインストールしたいのですが、Ubuntu 14.04にはPython 2.7とPython 3.4があります。Python 2の場合、次を使用してcx_Freezeを非常に便利にインストールできます。
sudo apt install cx-freeze
ただし、これはPython 2ではcx-freezeのみをインストールし、Python 3ではインストールしません。また、公式のcx_Freeze Webサイトにはインストールのヒントが含まれていません。私はソフトウェアをゼロから構築することにあまり自信がありません。私も試しましたpip3
(バージョン1.5.5)が、役に立ちませんでした:
pip3 install cx-freeze
could not find any downloads that satisfy the requirement
したがって、質問:
Python 3にcx_Freezeをインストールする簡単な(1行の)方法はありますか?
そうでない場合、誰かが私に最も簡単な代替案を順を追って案内してくれますか?
編集:Dumindu Mahawelaの回答に従って、次の出力を取得しました。
Selecting previously unselected package cx-freeze-python3.
(Reading database ... 163736 files and directories currently installed.)
Preparing to unpack cx-freeze-python3_4.3-0ubuntu0px0pre2_amd64.deb ...
Unpacking cx-freeze-python3 (4.3-0ubuntu0px0pre2) ...
dpkg: dependency problems prevent configuration of cx-freeze-python3:
cx-freeze-python3 depends on libpython3.2 (>= 3.2~a4); however:
Package libpython3.2 is not installed.
cx-freeze-python3 depends on python3 (<< 3.3); however:
Version of python3 on system is 3.4.0-0ubuntu2.
cx-freeze-python3 depends on python3.2; however:
Package python3.2 is not installed.
cx-freeze-python3 depends on cx-freeze-common; however:
Package cx-freeze-common is not installed.
dpkg: error processing package cx-freeze-python3 (--install):
dependency problems - leaving unconfigured
これはおそらく、リンクされたdebianパッケージが最近のUbuntuバージョンには対応していないことを意味します(python3 << 3.3が必要です)。このためにPython 3.2に戻りたくありません。
より複雑なインストールのアドバイスを探しても、問題のないものは何も見つかりませんでした。cx_Freezeは現在、Ubuntu上の3.3以上のPythonバージョンをサポートしていません。その場合は、先に進んで別のことを試してみます。助けてくれてありがとう!
sudo pip3 install setuptools
続いて:sudo pip3 install cx_Freeze
私のために働いた!?cxfreeze-quickstart
その後、コマンド:を使用できます。