Skip to content

Instantly share code, notes, and snippets.

@cosmoscalibur
Last active August 6, 2018 00:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cosmoscalibur/e7a39d53dcb48a2bbd17f24e32b3f9ba to your computer and use it in GitHub Desktop.
Save cosmoscalibur/e7a39d53dcb48a2bbd17f24e32b3f9ba to your computer and use it in GitHub Desktop.
Minimal example of PyInstaller with Python Anaconda in Linux
conda create -y -n pyinstaller python=3.6
conda activate pyinstaller
pip install pyinstaller
echo 'print("hola mundo")' > hola.py
pyinstaller --onefile hola.py
./dist/hola
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment