On pátek 13. května 2016 13:09:18 CEST Axel Braun wrote:
Hi Martin,
I'm about to start building python3 packages, and encounter a problem with setuptools:
It is installed: [ 25s] [129/171] cumulate python3-setuptools-21.0.0-118.1
but during build: [ 44s] + python setup.py build [ 44s] Traceback (most recent call last): [ 44s] File "setup.py", line 5, in <module> [ 44s] from setuptools import setup, find_packages [ 44s] ImportError: No module named setuptools
How about "python3 setup.py build" ?
Partly its so obvious....thanks, that was it.
A more general question on this python 2/3 stuff. I did not find for all python2 packages a correspondence in python3, e.g. python-pydot or python-wrapt Is it safe to use the python2-packages? Or would it be better look for/build a python3 package?
Thanks Axel Afaik not, for those you need to find/create python3 alternative. There is long term plan to have python2-blah and python3-blah packages generated at same time from same source (blah), but at the moment packages need to be handeled (and created separately)
Cheers Martin