Created
May 21, 2019 06:09
-
-
Save GenevieveBuckley/fc893569ac957c558059455ce619c027 to your computer and use it in GitHub Desktop.
Building wheels and exe files with python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build a wheel (outputs to dist/ directory) | |
python setup.py sdist bdist_wheel | |
# Build with pyinstaller | |
pyinstaller myfile.spec -w -F -y | |
## If no spec file currently exists | |
pyinstaller mypackage/main.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/ogrisel/python-appveyor-demo