Please advise the best way to publish a Quickly-generated program to Windows.
Asked
Active
Viewed 458 times
1 Answers
1
You will need a Windows pc to build it on. On this Windows pc you will want to install python, gtk, pygobject, pycairo, pygtk, py2exe, and SetupTools. Also you will need any other dependency/module your app might need but SetupTools should make that easier to pull off. Also you will need to remove anything in your application that would not be available to Windows. (i.e. Unity Bindings). Then you would run your app through Py2Exe and install it. Its not going to be a cake walk but its possibly possible :) Good Luck and Godspeed
Further reading/sources:
- PyGTK FAQ article on this
- Write-up by Sebastian Noack on the subject
- Python for Windows: www.python.org/download/releases/2.7.3/
- GTK for Windows: www.gtk.org/download/index.php
- PyGobject for Windows: ftp.gnome.org/pub/GNOME/binaries/win32/pygobject/
- PyCairo for Windows: ftp.gnome.org/pub/GNOME/binaries/win32/pycairo/
- PyGtk for Windows: ftp.gnome.org/pub/GNOME/binaries/win32/pygtk/
- Py2EXE: www.py2exe.org/
- SetupTools: pypi.python.org/pypi/setuptools#downloads
Zane Swafford
- 136