Skip to content

Ligator/PeopleCounter-for-Desktop

Repository files navigation

Compilación de ejecutables

Mac OS X

Para hacer el ejecutable en Mac OS X Yosemite se utilizó Py2App:

$ sudo easy_install -U py2app
$ py2applet --make-setup PeopleCounter.py
$ rm -rf build dist
$ python setup.py py2app -i requests --iconfile Icon-72.icns

Windows

Para hacer el ejecutable en Windows 7 se utilizó PyInstaller:

  • Descargar e instalar Python 2.7.x.
  • Reiniciar la computadora (importante).
  • Ejecutar en CMD:

> pip install pyinstaller

  • Descargar e instalar pywin32(Solo con esta versión funciona).
  • Reiniciar la computadora (importante).
  • Ejecutar en CMD:
> pyinstaller PeopleCounter.py -w -F --icon=Icon-72.ico

Linux

Para hacer el ejecutable en Ubuntu 14.04 se utilizó PyInstaller:

$ sudo apt-get install python-pip
$ sudo apt-get install python-tk
$ sudo pip install pyinstaller
$ sudo pip install requests
$ pyinstaller PeopleCounter.py --onefile --noconfirm

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages