Skip to content
/ pyexe Public
forked from manthey/pyexe

Create a single windows executable for python 2.7, 3.5, 3.6

License

Notifications You must be signed in to change notification settings

cbm755/pyexe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyexe.exe

Build status

Here is a stand-alone version of python that is a single Windows executable.

It consists of the most recent versions of Python (with builds for 2.7, 3.5, and 3.6 each in 32-bit and 64-bit versions), pywin32, psutil, six, pip, setuptools, and includes all packages that can be included without additional dlls, excepting tkinter.

See the appveyor script for build instructions.

Installing other modules

Python is most useful with additional modules. The stand-alone executable can use pip to install modules from pypi to the local directory. For instance:

py36-64.exe -m pip install --no-cache-dir --target . --upgrade sympy

Use -m pip to run the pip module. Use --no-cache-dir to avoid writing files to the user's data directory. Use --target . to install to the current directory, allowing you to import the modules easily. Use --upgrade to replace existing files, such as the common bin directory. Note that using --upgrade will overwrite or discard existing files, which may not be what you want (the bin directory will end up with just files for the most recently installed package).

Differences from installed Python

Although the stand-alone Python attempts to have the same features as a normally installed Python, there are some differences.

  • PYTHONHOME is ignored. This option doesn't make sense for a stand-alone version.
  • -V and PYTHONVERBOSE don't print exactly the same information as native Python, partly because the verbosity is increased after some modules are already imported.
  • Not all command line options and environment variables are implemented. Specifically, the following are ignored: -b, -Q, -t, -W, -X, -3, --check-hash-based-pycs, PYTHONCASEOK, PYTHONIOENCODING, PYTHONHASHSEED, PYTHONFAULTHANDLER, PYTHONLEGACYWINDOWSFSENCODING, PYTHONLEGACYWINDOWSSTDIO, PYTHONMALLOC, PYTHONCOERCECLOCALE, PYTHONDEVMODE. Many of these could be handled with a small amount of work.

About

Create a single windows executable for python 2.7, 3.5, 3.6

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%