-
Notifications
You must be signed in to change notification settings - Fork 506
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
Buildozer setup.py fails with Module ImportError #140
Comments
This error means setuptools is (apparently) not available in the python installation you are using. You should install it - see here, though it's probably in your distro's package manager assuming that's how you installed python. This isn't anything to do with buildozer though, setuptools is a separate module - it's worth having anyway because it's very frequently useful for installing stuff. |
Inclement, solved. thanks! |
@prometx How did you solve it? I removed |
@inclement I followed those exact instructions on the link that you put. I can confirm setuptools is there (I did |
@inclement Edit: If I go to the Python shell and type Edit #2: Also, i'm not installing Buildozer. I already got that installed. I'm just trying to build my project with |
@iiDatKat Your problem is unrelated to this old issue. Please open a new issue with the full details and log of the failed build. |
@inclement Yep, understood. I see you're helping me on StackOverflow (@mingleli), so I'll just do it on there. However, I'll post a new issue anyway. |
Hi,
trying to setup Buildozer like so:
"# latest dev
git clone git://github.com/kivy/buildozer
cd buildozer
sudo python2.7 setup.py install"
On install attempt Python reports:
"Traceback (most recent call last):
File "setup.py", line 5, in
from setuptools import setup
ImportError: No module named setuptools"
This is on Ubuntu 14.04, 64bit
Is this module not "packaged" with Buildozer? Please let me know what you think when you have a moment.
Thanks!
The text was updated successfully, but these errors were encountered: