nsuke / protobuf-qml

Protocol Buffers and gRPC binding for QML (QtQuick2)
MIT License
54 stars 14 forks source link

setup.py needs setuptools #17

Closed Phrogz closed 7 years ago

Phrogz commented 8 years ago
/usr/local/src/protobuf-qml$ ./tools/build_dependencies.py --shared
...
Traceback (most recent call last):
  File "setup.py", line 11, in <module>
    from setuptools import setup, Extension, find_packages
ImportError: No module named setuptools
[/usr/bin/python setup.py build] failed with exitcode 1.
Phrogz commented 8 years ago

Solution is to run...

sudo apt-get install python-setuptools

...per http://stackoverflow.com/a/14426553/405017