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
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
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