Mathux / TEMOS

Official PyTorch implementation of the paper "TEMOS: Generating diverse human motions from textual descriptions", ECCV 2022 (Oral)
https://mathis.petrovich.fr/temos/
MIT License
378 stars 25 forks source link

About rendering on a Windows system #7

Open wooheum-xin opened 2 years ago

wooheum-xin commented 2 years ago

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"

HappyPiepie commented 2 years ago

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 ? "

fyyakaxyy commented 1 year ago

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?

Mathux commented 8 months ago

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?

TLDX-XIONG commented 6 months ago

@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.

hi337 commented 4 months ago

@TLDX-XIONG Can you expand a little bit on what you mean by "add to the beginning of the script". What script are you refering to? If you can clarify a little on what you mean exactly, that would be very helpful.