square / PonyDebugger

Remote network and data debugging for your native iOS app using Chrome Developer Tools
Other
5.87k stars 595 forks source link

macOS Catalina, cannot install ponyd #213

Open jbarros35 opened 4 years ago

jbarros35 commented 4 years ago

Guys do you have any solution for that?

ponyd serve --listen-interface=127.0.0.1 -bash: ponyd: command not found

ktdolphin commented 3 years ago

In case it helps others, I got it to work on Catalina by installing a Python 2 virtual environment (using miniconda, in my case) and tweaking setup.py to use the last Python2 compatible Tornado (5.1).

In my case: conda create -n ponyd python=2.7 conda activate pony Modify your setup.py to require Tornado==5.1 (install_requires=['tornado**==5.1**', 'pybonjour==1.1.1']). python setup.py install

ikrom92 commented 2 years ago

Check this answer: https://github.com/square/PonyDebugger/issues/217#issuecomment-915318222