-
Notifications
You must be signed in to change notification settings - Fork 242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python 3.7 breaks on subprocess import when building with flask-1.0.2 #361
Comments
Ahh dang it:
subprocess is redefined here. I'm not entirely sure but it might not be a kivy-ios issue after all... |
Pulling the tip of |
I needed to use a different module that includes It turns out that I think this is a kivy-ios issue after all because I'm able to run my app just fine via
|
Yes, subprocess is a fake module because it doesn't work on iOS (yet or not at all i don't remember). |
See the related issue: #372 |
Possibly related to namespace clash?
adamchainz/django-mysql#396
xmikos/qspectrumanalyzer#49
This works locally when I just run
python main.py
and don't build an iOS app first 🤔I'm running Mojave with Xcode 10.1
I tried a direct import of it before the failing line and got as expected:
I then tried at the top of my
main.py
file before anything else was imported and got the same errorThe text was updated successfully, but these errors were encountered: