- Configuring LinuxCNC
- Advanced Configuration
- execv(python): No such file or directory / python working directory
execv(python): No such file or directory / python working directory
The system works but now I want to include some python code.
at the line:
loadusr -Wn compensation python compensation.py filename.txt
it gives the error
execv(python): No such file or directory
The file is the configs/"configurationName" folder.
Where is python looking for the file?
Thanks
A.
Please Log in or Create an account to join the conversation.
- tommylight
- Away
- Moderator
- Posts: 19049
- Thank you received: 6386
One thing to check is make sure the compensation.py file is executable.loadusr -Wn compensation python compensation.py filename.txt
it gives the error
execv(python): No such file or directory
Please Log in or Create an account to join the conversation.
chmod 777 compensation.py and filename.txt
no change.
the working directory of linuxcnc ist the directory of the config ?
so /home/user/linuxcnc/configs/maschine ?
Please Log in or Create an account to join the conversation.
it gives this error
Please Log in or Create an account to join the conversation.
loadusr -Wn compensation python3 compensation.py filename.txt
Please Log in or Create an account to join the conversation.
If so where did you add it?
Also qtdragon_hd in 2.9 supports built in gcode ripper and z level compensation.
Are you instead trying 3rd party code?
Could you give more information.
Please Log in or Create an account to join the conversation.
Thanks
srl
Please Log in or Create an account to join the conversation.
ich habe jetzt den Eintrag in der Hal auf
loadusr -Wn compensation python3 compensation.py probe-results.txt cubic
umgeschrieben und zusätzlich in der compensation.py die Zeil_1 wie folgt umbenannt #!/usr/bin/env python3
dann kam aber folgende Meldung:
note: jog_invert=set()
File "/home/dieter/linuxcnc/configs/Axis_mit_Handrad/compensation.py", line 43
print "ERROR! No input file name specified!"
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
compensation.hal:8: waitpid failed python3 compensation
compensation.hal:8: python3 exited without becoming ready
9390
9447
probe-results.txt müsste doch die Datei sein die er nicht findet oder?
Als weiterer Hinweis:
Was mache ich falsch, da ja dies bereit schon mal funktioniert hatte, hatte nur an der INI ein paar Zeilen dazugefügt, was mit diesem Thema nichts zu tun hatte, dann kam auf einmal diese Fehlermeldung: execv(python): No such file or directory / python working directory
Dann habe ich einen neuen Rechner mit Debian 12 und Linuxcnc 2.9.1 aufgesetzt der hat Python3 installiert, aber hier funktioniert es auch nicht.
der Alte Rechner bei dem es auch nicht mehr funktioniert hatte Linuxcn 2.8.4 und Pyhton 2 installiert.
Leider weiss ich keinen Rat mehr.
Please Log in or Create an account to join the conversation.
Das ist klar Python2 Syntax, daher die Fehlermeldung. Vielleicht kannst du die Datei 'compensation.py' hier posten.File "/home/dieter/linuxcnc/configs/Axis_mit_Handrad/compensation.py", line 43
print "ERROR! No input file name specified!"
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- Configuring LinuxCNC
- Advanced Configuration
- execv(python): No such file or directory / python working directory