Issue with running SOFA22 binary on Win10 #3009
-
Dear admin, I have installed the SOFA_robosoft2022_python-3.8_Windows binary from DEFROST team, but I had some issues running the provided scenes examples; using Python 3.8.10 Both versions of the examples (in sofapython2 and sofapython3 folders) in the folder SoftRobots do not work. Also, the SofaPython3.dll file can't be loaded. I have tried different solutions from the forum but no results, kindly advise. Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @mohalshaw Thanks for your report. I am missing information to guide you.
python -c "exec( \"import os, sys\nprint('#################')\nprint('--- sys.version ---')\nprint(sys.version)\nprint('--- PATH ---')\ntry:\n print(os.environ['PATH'])\nexcept Exception:\n pass\nprint('--- SOFA_ROOT ---')\ntry:\n print(os.environ['SOFA_ROOT'])\nexcept Exception:\n pass\nprint('--- PYTHONPATH ---')\ntry:\n print(os.environ['PYTHONPATH'])\nexcept Exception:\n pass\nprint('--- sys.path ---')\ntry:\n print(str(sys.path))\nexcept Exception:\n pass\nprint('#################')\" )" Have you followed all instructions given here (for these specific softrobotics binaries): https://github.com/SofaDefrost/RoboSoft2022/#windows ? |
Beta Was this translation helpful? Give feedback.
-
Dear @hugtalbot, Thank you for the update. Thanks again! |
Beta Was this translation helpful? Give feedback.
Hi @mohalshaw
Thanks for your report. I am missing information to guide you.
Could you detail :
python -c "exec( \"import os, sys\nprint('#################')\nprint('--- sys.version ---')\nprint(sys.version)\nprint('--- PATH ---')\ntry:\n print(os.environ['PATH'])\nexcept Exception:\n pass\nprint('--- SOFA_ROOT ---')\ntry:\n print(os.environ['SOFA_ROOT'])\nexcept Exception:\n pass\nprint('--- PYTHONPATH ---')\ntry:\n print(os.environ['PYTHONPATH'])\nexcept Exception:\n pass\nprint('--- sys.path ---')\ntry:\n print(str(sys.path))\nexcept Exc…