Traceback (most recent call last):
File "/usr/share/blender/2.93/scripts/modules/addon_utils.py", line 351, in enable
mod = __import__(module_name)
File "/home/ktoto/.config/blender/2.93/scripts/addons/io_pdx_mesh/__init__.py", line 131, in <module>
raise NotImplementedError('Running from unknown environment "{0}"'.format(environment))
NotImplementedError: Running from unknown environment "/usr/bin/python3.9"
Python version :
Python 3.9.7
After some investigations i found that in "io_pdx_mesh" used
method : environment = sys.executable.lower()
but because precess tree look like this : bash -> blender -> python 3.9 -> python script
Result contain : "/usr/bin/python3.9"
May be is an option to use : https://github.com/giampaolo/psutil intead of sys.executable
Activation attempt of addon show following error
Python version : Python 3.9.7
After some investigations i found that in "io_pdx_mesh" used method : environment = sys.executable.lower() but because precess tree look like this : bash -> blender -> python 3.9 -> python script Result contain : "/usr/bin/python3.9" May be is an option to use : https://github.com/giampaolo/psutil intead of sys.executable