> Am 15.07.2016 um 11:45 schrieb [email protected]: > > > On 15/07/16 10:10, Michael Haberler wrote: >>> Am 15.07.2016 um 01:47 schrieb 'IonicBasher' via Machinekit >>> <[email protected]>: >>> >>> The attached file is the entirety of commands that I ran from a brand new >>> RCN jessie machinekit image for the BBB. >>> >>> following along from here: >>> https://github.com/the-snowwhite/CRAMPS2/wiki/BBB-CRAMPS-Machineface-3D-Printer-Out-Of-The-Box-Experience >>> >>> Still got the error by the end, perhaps I am doing something wrong if it is >>> not reproduce-able? >>> >>> Here are the results of "apt-cache policy machinekit" : >>> >>> machinekit@beaglebone:~$ apt-cache policy machinekit >>> >>> machinekit: >>> >>> Installed: 0.1.1468432619-1mk.travis.master.git0766e79c~1jessie >>> >>> Candidate: 0.1.1468432619-1mk.travis.master.git0766e79c~1jessie >>> >>> Version table: >>> >>> *** 0.1.1468432619-1mk.travis.master.git0766e79c~1jessie 0 >>> >>> 500 http://deb.machinekit.io/debian/ jessie/main armhf Packages >>> >>> 100 /var/lib/dpkg/status >>> >>> machinekit@beaglebone:~$ >> I got the same error now on another ARM image: >> >> >> machinekit@sd2205:~$ /usr/bin/configserver >> Traceback (most recent call last): >> File "/usr/bin/configserver", line 16, in <module> >> from machinetalk.protobuf.message_pb2 import Container >> ImportError: No module named machinetalk.protobuf.message_pb2 >> >> this is due to an __init__.py file missing >> >> >> try this: >> >> sudo touch /usr/lib/python2.7/dist-packages/machinetalk/__init__.py >> >> and re-run (works for me thereafter) >> >> could you please file a bug in the issue tracker? >> >> - Michael > > I don't know what is going on here, but the __init__py file is NOT missing > from the package > > mick@INTEL-i7:/downloads$ dpkg -c > machinekit_0.1.1468568321-1mk.travis.master.gitba4be43b~1jessie_amd64.deb | > grep init > > -rw-r--r-- root/root 8786 2016-07-15 09:04 > ./usr/share/linuxcnc/examples/sample-configs/sim/axis/vismach/hexapod-sim/minitetra.ini > -rw-r--r-- root/root 0 2016-07-15 09:20 > ./usr/lib/python2.7/dist-packages/touchy/__init__.py > -rw-r--r-- root/root 911 2016-07-15 09:20 > ./usr/lib/python2.7/dist-packages/rs274/__init__.py > -rw-r--r-- root/root 0 2016-07-15 09:20 > ./usr/lib/python2.7/dist-packages/stepconf/__init__.py > -rw-r--r-- root/root 31 2016-07-15 09:20 > ./usr/lib/python2.7/dist-packages/gladevcp/__init__.py > -rw-r--r-- root/root 0 2016-07-15 09:20 > ./usr/lib/python2.7/dist-packages/gscreen/__init__.py > > -rw-r--r-- root/root 0 2016-07-15 09:20 > ./usr/lib/python2.7/dist-packages/machinetalk/protobuf/__init__.py
that file is fine what is missing is ./usr/lib/python2.7/dist-packages/machinetalk/__init__.py (note lack of protobuf subdir) this is needed since it's a nested package with 2 levels of nesting I hope https://github.com/machinekit/machinekit/pull/1000 fixes this, let's see > > -rw-r--r-- root/root 0 2016-07-15 09:20 > ./usr/lib/python2.7/dist-packages/gmoccapy/__init__.py > -rw-r--r-- root/root 2 2016-07-15 09:20 > ./usr/lib/python2.7/dist-packages/fdm/__init__.py > -rw-r--r-- root/root 0 2016-07-15 09:20 > ./usr/lib/python2.7/dist-packages/machinekit/__init__.py > -rw-r--r-- root/root 2 2016-07-15 09:20 > ./usr/lib/python2.7/dist-packages/drivers/__init__.py > > >> >>> >>> >>> >>> >>> >>> >>> Thanks for all of the help by the way to all involved. >>> >>> >>> -- >>> website: http://www.machinekit.io blog: http://blog.machinekit.io github: >>> https://github.com/machinekit >>> --- >>> You received this message because you are subscribed to the Google Groups >>> "Machinekit" group. >>> To unsubscribe from this group and stop receiving emails from it, send an >>> email to [email protected]. >>> Visit this group at https://groups.google.com/group/machinekit. >>> For more options, visit https://groups.google.com/d/optout. >>> <configserver_error.txt> > > -- > website: http://www.machinekit.io blog: http://blog.machinekit.io github: > https://github.com/machinekit > --- You received this message because you are subscribed to the Google Groups > "Machinekit" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > Visit this group at https://groups.google.com/group/machinekit. > For more options, visit https://groups.google.com/d/optout. -- website: http://www.machinekit.io blog: http://blog.machinekit.io github: https://github.com/machinekit --- You received this message because you are subscribed to the Google Groups "Machinekit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at https://groups.google.com/group/machinekit. For more options, visit https://groups.google.com/d/optout.
