TEMOS icon indicating copy to clipboard operation
TEMOS copied to clipboard

About rendering on a Windows system

Open wooheum-xin opened this issue 2 years ago • 4 comments

Hi dear authors, I would like to start by saying thank you for your amazing work.

I tried rendering in my Windows system the way you wrote it, but it didn't work. I can not Install those packages in the python environnement of blender.

like "defaulting to user installation because normal site-packages is not writeable"

wooheum-xin avatar May 31 '22 14:05 wooheum-xin

Hi , Thank you for your great contribution in this field. I have "No module named 'omegaconf' when i run render.py , however, the 'omegaconf' is in my environment . Can you help me ? "

HappyPiepie avatar Nov 04 '22 07:11 HappyPiepie

Hi , Thank you for your great contribution in this field. I have "No module named 'omegaconf' when i run render.py , however, the 'omegaconf' is in my environment . Can you help me ? "

Hello, I have also encountered this problem. Have you resolved it?

fyyakaxyy avatar Apr 17 '23 03:04 fyyakaxyy

Hello all,

Sorry for the delay, I don't have a Windows machine so I cannot reproduce the error myself. Did anyone succeed at the end?

Mathux avatar Feb 26 '24 13:02 Mathux

@fyyakaxyy @HappyPiepie hello, i have solved this problem in the following instruction: if you install package without a specific address such as: /path/to/blender/python -m pip install --user numpy --target=.\lib\site-packages

this package will be installed default in the C:\Users\<username>\AppData\Roaming\Pythonxx\site-packages.

so in the begin of script, adding sys.path.insert(0, C:\Users\<username>\AppData\Roaming\Pythonxx\site-packages) can solve it.

TLDX-XIONG avatar May 08 '24 06:05 TLDX-XIONG