mkocabas / VIBE

Official implementation of CVPR2020 paper "VIBE: Video Inference for Human Body Pose and Shape Estimation"
https://arxiv.org/abs/1912.05656
Other
2.87k stars 550 forks source link

No module named 'bpy' #149

Open jeffreyking23 opened 3 years ago

jeffreyking23 commented 3 years ago

how to install bpy? I have try pip or build from source code, doesn't work for me ...

vbhat8 commented 3 years ago

Same

ThomasWarn commented 3 years ago

I'm afraid I don't understand why bpy is a requirement since I'm not experiencing this issue, but bpy is the "Blender python" library, for the 3d modeling software Blender.

xiezhongzhao commented 3 years ago

You can try this command line to solve the problem:

pip install fake-bpy-module-2.80

liuhaorandezhanghao commented 3 years ago

AttributeError: 'NoneType' object has no attribute 'scenes'

liuhaorandezhanghao commented 3 years ago

You can try this command line to solve the problem:

pip install fake-bpy-module-2.80

AttributeError: 'NoneType' object has no attribute 'scenes'

carlosedubarreto commented 3 years ago

another method I've found to install bpy was using conda.

conda install -c kitsune.one python-blender

But I think it only works if you are using at least miniconda

liuhaorandezhanghao commented 3 years ago

Same

have you fixed it?

liuhaorandezhanghao commented 3 years ago

You can try this command line to solve the problem:

pip install fake-bpy-module-2.80

i have tried.But there is no data.scene in bpy

ruyiwei-cas commented 2 years ago

@carlosedubarreto (vibe-env) [yiwei.ru@localhost Downloads]$ conda install -c kitsune.one python-blender Collecting package metadata (current_repodata.json): failed

UnavailableInvalidChannel: The channel is not accessible or is invalid. channel name: kitsune.one channel url: https://mirrors.tuna.tsinghua.edu.cn/anaconda/kitsune.one error code: 404

You will need to adjust your conda configuration to proceed. Use conda config --show channels to view your configuration's current state, and use conda config --show-sources to view config file locations.

ruyiwei-cas commented 2 years ago

(vibe-env) [yiwei.ru@localhost Downloads]$ conda install -c kitsune.one python-blender Collecting package metadata (current_repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve. Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source. Collecting package metadata (repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve. Solving environment: \ Found conflicts! Looking for incompatible packages. This can take several minutes. Press CTRL-C to abort. failed

UnsatisfiableError: The following specifications were found to be incompatible with the existing python installation in your environment:

Specifications:

Your python: python=3.7

If python is on the left-most side of the chain, that's the version you've asked for. When python appears to the right, that indicates that the thing on the left is somehow not available for the python version you are constrained to. Note that conda will not change your python version to a different minor version unless you explicitly specify that.

The following specifications were found to be incompatible with your system:

Your installed version is: 2.17

FinallyKiKi commented 2 years ago

another method I've found to install bpy was using conda.

conda install -c kitsune.one python-blender

But I think it only works if you are using at least miniconda

Thank you!

silvercondor commented 2 years ago

getting similar output to @ruyiwei-cas for conda install -c kitsune.one python-blender were you able to resolve?