-
Notifications
You must be signed in to change notification settings - Fork 1k
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
famous gcoder_line error, wrong paths in setup.py #641
Comments
Hmm, does the python setup.py build_ext --inplace produces something ? Do you have a list of files called gcoder_line.* in the Printrun file tree ? |
Sorry for the late response, had the kids to watch... |
Command: Output (2 lines): |
Okai so its not even trying to compile it I guess. Gotta find a Windows Le mer. 18 mars 2015 20:40, indazoo [email protected] a écrit : Command:
|
Hmm, i did some research... Setup.py fails at: I inserted a print statement which gives: Oh Oh .... I admit at the moment I have not understand it fully....can you help? PS.: |
I tried installing the MS compiler Microsoft Visual C++ Compiler for Python 2.7 and uncommented mingw32 in distutils.cfg Same "dll load failed" message Then i created a hello world sample from here: |
Both compilers seem to work MinGW command: Result: VC compiler command: Result: |
Hi I tracked it down. With a even more verbose output I could see more (see my comment in the closed 642 issue, would be nice if you can add that too) The command: showed the following stack trace: WARNING:root:Memory-efficient GCoder implementation unavailable: No module named Very ugly hack: I made another to-be-secure test: All good now..case closed for me. I'll give notice to gohlke. Thanks for your feedback. P.S. |
Here is the "sucessfull" MinGW compiler output. Perhaps one has something to do: C:\Temp\PrintRun\Printrun-printrun-20150310_test>python setup.py build_ext --inp C:\Temp\PrintRun\Printrun-printrun-20150310_test> |
now I'm off...really |
Hi
I would like to start printrun without the annoying gcoder_line error message at each start and of course use less memory.
Message:
WARNING:root:Memory-efficient GCoder implementation unavailable: No module named gcoder_line
I work on Windows 7
I installed all the follwing on my system to get Printrun up ( a single program!!! ).
Then i run "python setup.py build_ext --inplace" in printrun directory
Because of setup.py:
target_images_path = "share/pronterface/images/"
data_files = [('share/pixmaps/', ['pronterface.png', 'plater.png', 'pronsole.png']),
('share/applications', ['pronterface.desktop', 'pronsole.desktop', 'plater.desktop']),
('share/appdata', ['pronterface.appdata.xml', 'pronsole.appdata.xml', 'plater.appdata.xml'])]
After fixing the bugs(?) the command
the command
python setup.py build_ext --inplace
works also, but the message about the gcoder_line s still present
Any help appreciated
The text was updated successfully, but these errors were encountered: