cannot add SofaPython3 plugin on Mac M1 Pro #2934
-
Hello everyone, I am trying to add SofaPython3 plugin in runSofa UI through Edit->Plugin Manager->Add on Mac. But I met the following error
This seems like a Python path issue. I have Python at Then I compiled the SofaPython3 with specifying python path. When adding the plugin through the Plugin Manager, it gives me Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Hi @garyxyz To better assist you, could you share more info with us: EnvironmentContext
Env vars 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('#################')\" )" < COPY-PASTE HERE THE RESULT OF THE COMMAND ABOVE >
Content of build_dir/CMakeCache.txt
Thanks a lot |
Beta Was this translation helpful? Give feedback.
Hi @garyxyz
To better assist you, could you share more info with us:
Environment
Context
Env vars
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 ---'…