Hi, I tried to load this plugin in Blender on Manjaro Linux but it returns a "Running from unknown environment" error.
After experimenting a little with the code I noticed: environment = sys.executable.lower() was returning "/usr/bin/python3.10". This seems to throw off the environmental detection which looks like it expects either "blender" or "maya" as a result.
I did manage to fix it on my system by replacing that line (48) in init.py with:
import osimport psutilenvironment = ""environment = psutil.Process(os.getpid()).name()print("PEEK: environment = ", environment.lower())
Not sure if this helps anybody running into the same issue.
Hi, I tried to load this plugin in Blender on Manjaro Linux but it returns a "Running from unknown environment" error.
After experimenting a little with the code I noticed: environment = sys.executable.lower() was returning "/usr/bin/python3.10". This seems to throw off the environmental detection which looks like it expects either "blender" or "maya" as a result.
I did manage to fix it on my system by replacing that line (48) in init.py with:
import os
import psutil
environment = ""
environment = psutil.Process(os.getpid()).name()
print("PEEK: environment = ", environment.lower())
Not sure if this helps anybody running into the same issue.