Jump to content

PsychoTaker

Member
  • Posts

    3
  • Joined

  • Last visited

Awards

This user doesn't have any awards

PsychoTaker's Achievements

  1. Hi, I have recently wanted to make my python script executable via cx_freeze. I tried python 3.5 and 3.6 same error... Here is my setup.py code: 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 == "win32": base = "Win32GUI" setup( name = "guifoo", version = "0.1", description = "My GUI application!", options = {"build_exe": build_exe_options}, executables = [Executable("FileName.py", base=base)]) As attachment I put picture of an error I get Any one know how to fix it
  2. Hi, I'm thinking about is it good to be Windows Insider. I mean probably it will affect some drivers and new features could be confusing and strange. So I'm going to install it on my daily used system is it good or less good because maybe after installing new build I will be ,might, needed to reset my OS.
×