kivy / kivy-sdk-packager

Scripts for Kivy SDK generation on Windows, OS X and Linux
MIT License
40 stars 32 forks source link

Drag/drop of python script onto Kivy.app doesn't work as stated, have workaround #48

Open kcrossen opened 5 years ago

kcrossen commented 5 years ago

The directions on https://kivy.org/doc/stable/guide/packaging-osx.html#: $ kivy -m pip install don't work, I think because MakeSymlinks probably doesn't work (Kivy.app vs Kivy2.app perhaps).

What does work is (I did this on copy of installed app w/ 2 dropped from name): $ cd //Kivy.App/Contents/Resources/venv/lib/python2.7/site-packages $ pip install urllib3 -t . $ pip install botocore -t . $ pip install boto3 -t .

Now drag/drop script works.