-1

I have been searching all day how to install py2app. I have downloaded the folder but I don't know how to actually install the application. Also, if anyone could give me an easy way of using py2app that would be great!

Ben Hughes
  • 101
  • 1
  • 1
  • 5

2 Answers2

0

Which Python version are you using? Assuming you use Mac OS X version, first you need to install pip. For that google: how to install python pip? This is really easy. And after that issue in your terminal

  $ sudo pip install -U py2app
oz123
  • 27,559
  • 27
  • 125
  • 187
0

if you already have the source package downloaded, it has a setup.py file in it's top-level directory. To install, just invoke it like this:

python setup.py install

also, you could read the installation instructions: https://pythonhosted.org/py2app/install.html

Corey Goldberg
  • 59,062
  • 28
  • 129
  • 143