Reputation: 185
How can I build a .exe program from my Anaconda environment to get a standalone application?
Upvotes: 2
Views: 6769
Reputation: 2917
Create an environment with all packages needed for your program and run python your_script.py
or pyinstaller --onefile <your_script_name>.py
if you want a one-file .exe only.
Upvotes: 2