Posts: 126
Threads: 29
Joined: Aug 2018
Dec-23-2018, 11:40 PM
(This post was last modified: Dec-23-2018, 11:40 PM by atlass218.)
Hi; I use python 3.6, and my PC is equipped with windows 10 64 bits.
for information, my PC is equipped with windows 10 64 bits.
I finished my script.py, and I turned it into an executable application by this command :
Quote:python setup.py build
and I tryed also this other command :
Quote:python setup.py bdist_msi
1) for the first case, I have a build folder that was created and that contains my executable application
2) for the second case, I have two folders build, and dist.
the stucture of the folder "build" is dispalyed by this picture:
in both cases when I run my executable application created, it does not work
the file setup.py :
import sys
from cx_Freeze import setup, Executable
# Dependencies are automatically detected, but it might need fine tuning.
build_exe_options = {"packages": ["os"], "excludes": ["tkinter"]}
# GUI applications require a different base on Windows (the default is for a
# console application).
base = None
if sys.platform == "win64":
base = "Win64GUI"
setup( name = "cev",
version = "0.1",
description = "My CEV application!",
options = {"build_exe": build_exe_options},
executables = [Executable("cev.py", base=base)]) thanks for help
Posts: 8,151
Threads: 160
Joined: Sep 2016
Please, when you cross-post (e.g. on SO or elsewhere), let us know - you don't want to waste the time of people who want to help you, right?
Posts: 1
Threads: 0
Joined: Dec 2018
use pyinstaller instead.
you can also check youtube video
Posts: 126
Threads: 29
Joined: Aug 2018
but at the internet I read that pyinstaller is only compatible with python 2.7 and not with version 3.X
Posts: 1,150
Threads: 42
Joined: Sep 2016
I can assure you it works with Python 3.6 since I have used it.
Posts: 8,151
Threads: 160
Joined: Sep 2016
(Dec-24-2018, 09:41 AM)atlass218 Wrote: pyinstaller is only compatible with python 2.7 and not with version 3.X
Don't know where you read it, but it's not true.
Posts: 126
Threads: 29
Joined: Aug 2018
Dec-24-2018, 11:42 AM
(This post was last modified: Dec-24-2018, 11:42 AM by atlass218.)
I think I confused it with py2exe
but when I try to install pyinstaller I have this error :
Quote:C:\Users\AHMED\AppData\Local\Programs\Python\Python36>pip install pyinstaller
Collecting pyinstaller
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/pyinstaller/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/pyinstaller/
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/pyinstaller/
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/pyinstaller/
Posts: 8,151
Threads: 160
Joined: Sep 2016
try again and if you don't succeed - download wheel from Gohlke.
Actually - this is the direct link.
Then you can install it from the local whl file with pip install PyInstaller‑3.4‑py2.py3‑none‑any.whl
Posts: 126
Threads: 29
Joined: Aug 2018
I downloaded the file "PyInstaller-3.4-py2.py3-none-any.whl", which I put in the folder python36. Then I made in the console command : pip install PyInstaller-3.4-py2.py3-none-any.whl
subsequently I had this error
Quote:C:\Users\AHMED\AppData\Local\Programs\Python\Python36>pip install PyInstaller-3.4-py2.py3-none-any.whl
Processing c:\users\ahmed\appdata\local\programs\python\python36\pyinstaller-3.4-py2.py3-none-any.whl
Collecting altgraph (from PyInstaller==3.4)
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/altgraph/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/altgraph/
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/altgraph/
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/altgraph/
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)': /simple/altgraph/
Could not fetch URL https://pypi.python.org/simple/altgraph/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/altgraph/ (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)'),)) - skipping
Could not find a version that satisfies the requirement altgraph (from PyInstaller==3.4) (from versions: )
No matching distribution found for altgraph (from PyInstaller==3.4)
You are using pip version 9.0.3, however version 18.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
Posts: 8,151
Threads: 160
Joined: Sep 2016
upgrade your pip. this should fix the ssl error
|