Voglio installare cx_Freeze per Python 3. Il mio Ubuntu 14.04 ha Python 2.7 e Python 3.4. Per Python 2 ho potuto installare cx_Freeze molto comodamente usando:
sudo apt install cx-freeze
Tuttavia, questo installa solo cx-freeze per Python 2 e non per Python 3. Anche il sito Web ufficiale di cx_Freeze non contiene suggerimenti per l'installazione. Non sono molto fermo nella creazione di software da zero. Ho anche provato pip3
(versione 1.5.5) ma inutilmente:
pip3 install cx-freeze
could not find any downloads that satisfy the requirement
Pertanto le domande:
Esiste un modo semplice (una riga) per installare cx_Freeze per Python 3?
In caso contrario, qualcuno può guidarmi passo dopo passo attraverso l'alternativa più semplice per favore?
modifica: seguendo la risposta di Dumindu Mahawela ho ottenuto il seguente risultato:
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
il che probabilmente significa che il pacchetto debian collegato non lo fa per le recenti versioni di Ubuntu (richiesto python3 << 3.3). Non voglio tornare a Python 3.2 per questo.
Cercando anche consigli di installazione più complessi non ho trovato nulla che non avesse avuto alcun problema o altro. È possibile che al momento cx_Freeze non supporti molto bene le versioni di Python> = 3.3 su Ubuntu. In tal caso, andrei avanti e proverei qualcosa di diverso. Grazie per tutti gli sforzi per aiutare!
sudo pip3 install setuptools
seguito da:sudo pip3 install cx_Freeze
lavorato per me !? Il comando:cxfreeze-quickstart
può quindi essere utilizzato.