vismach

More
06 Mar 2024 12:17 - 06 Mar 2024 12:18 #295314 by Aciera
Replied by Aciera on topic vismach

ImportError: /usr/lib/python3/dist-packages/_togl.cpython-311-x86_64-linux-gnu.so: undefined symbol: glXDestroyContext

Seems like there is a problem with your python packages but I'm afraid I don't know how to fix it.
Is this on a recent Debian Bookworm installation?
Last edit: 06 Mar 2024 12:18 by Aciera.

Please Log in or Create an account to join the conversation.

More
06 Mar 2024 13:14 #295317 by Abdulkareem
Replied by Abdulkareem on topic vismach
yes it is the recent debian bookworm installation

Please Log in or Create an account to join the conversation.

More
06 Mar 2024 20:12 - 06 Mar 2024 20:15 #295344 by zz912
Replied by zz912 on topic vismach
Are spaces allowed in *.stl file names?
Try your configuration only with box first.
Is your *.stl file ascii? It cant be binary.
Last edit: 06 Mar 2024 20:15 by zz912.

Please Log in or Create an account to join the conversation.

More
07 Mar 2024 10:54 #295389 by Aciera
Replied by Aciera on topic vismach
The problem is with your system/installation since you can't even get the vismach models of the built in configs to run. As long as that does not work there is no point fiddling with your custom vismach simulation.
The following user(s) said Thank You: tommylight, Abdulkareem

Please Log in or Create an account to join the conversation.

More
07 Mar 2024 12:43 #295401 by zz912
Replied by zz912 on topic vismach

Thank you, it opened the milturn and showed the machine model in the tk screen, now i want to show my machine model

If I understood it correctly, built in vismach Abdulkareem can open it. He can not open his vismach.
The following user(s) said Thank You: Aciera, Abdulkareem

Please Log in or Create an account to join the conversation.

More
07 Mar 2024 17:29 #295417 by Aciera
Replied by Aciera on topic vismach

If I understood it correctly, built in vismach Abdulkareem can open it. He can not open his vismach.

Oops, my appologies, I missed that post, I thought the screenshot showed the millturn config. 
The following user(s) said Thank You: Abdulkareem

Please Log in or Create an account to join the conversation.

More
07 Mar 2024 17:40 #295419 by Aciera
Replied by Aciera on topic vismach
1. As suggested remove the whitespace in the .stl file names. Also beware that '.STL' is not the same as '.stl'
2. I would recommend to use a 'try' structure so you get some feedback in the terminal

maybe change this:
base = AsciiSTL(filename="ascii base.STL")
shoulder = AsciiSTL(filename="ascii shoulder.STL")
xaxis = AsciiSTL(filename="X ascii.STL")
yaxis = AsciiSTL(filename="y ascii.STL")
zaxis = AsciiSTL(filename="Z ascii.STL")

to something like this:
try:
    base = AsciiSTL(filename="ascii_base.STL")
    shoulder = AsciiSTL(filename="asci_ shoulder.STL")
    xaxis = AsciiSTL(filename="X_ascii.STL")
    yaxis = AsciiSTL(filename="y_ascii.STL")
    zaxis = AsciiSTL(filename="Z_ascii.STL")
except Exception as error:
    print(error)
 
The following user(s) said Thank You: Abdulkareem

Please Log in or Create an account to join the conversation.

Time to create page: 0.096 seconds
Powered by Kunena Forum