HumanML3D icon indicating copy to clipboard operation
HumanML3D copied to clipboard

Could not find a version that satisfies the requirement body-visualizer

Open DrMemoryFish opened this issue 2 years ago • 13 comments

I'm getting this error:

E:\AI\HumanML3D>conda env create -f environment.yaml
Collecting package metadata (repodata.json): done
Solving environment: done


==> WARNING: A newer version of conda exists. <==
  current version: 4.12.0
  latest version: 22.9.0

Please update conda by running

    $ conda update -n base -c defaults conda


Preparing transaction: done
Verifying transaction: done
Executing transaction: done
Installing pip dependencies: \ Ran pip subprocess with arguments:
['C:\\Users\\Abdullah\\miniconda3\\envs\\torch_render\\python.exe', '-m', 'pip', 'install', '-U', '-r', 'E:\\AI\\HumanML3D\\condaenv.842xv54t.requirements.txt']
Pip subprocess output:
Collecting absl-py==1.0.0
  Using cached absl_py-1.0.0-py3-none-any.whl (126 kB)

Pip subprocess error:
ERROR: Could not find a version that satisfies the requirement body-visualizer
ERROR: No matching distribution found for body-visualizer

failed

CondaEnvException: Pip failed


E:\AI\HumanML3D>

DrMemoryFish avatar Oct 06 '22 18:10 DrMemoryFish

I'm having the same problem.

Dene33 avatar Oct 10 '22 13:10 Dene33

Remove body-visualizer from the .yaml file After you activate the conda environement, install the repo using pip install git+https://github.com/nghorbani/body_visualizer.git

katsully avatar Oct 10 '22 15:10 katsully

Actually, the better way is to change the environment.yaml.

Change body-visualizer==1.1.0 to git+https://github.com/nghorbani/body_visualizer.git and psbody-mesh==0.4 to git+https://github.com/MPI-IS/mesh.git

Dene33 avatar Oct 10 '22 16:10 Dene33

I'm stilling have issues installing psbody-mesh ERROR: Failed building wheel for psbody-mesh Anyone else?

katsully avatar Oct 12 '22 10:10 katsully

Also configer==1.4.1, seems the newest on pypi is 1.3.1.

So the following need to be installed manually, or updated to point to git instead in envro yml:

body-visualizer==1.1.0
configer==1.4.1
psbody-mesh==0.4
pip install git+https://github.com/nghorbani/body_visualizer.git
pip install git+https://github.com/MPI-IS/configer
pip install git+https://github.com/MPI-IS/mesh.git

Kadah avatar Oct 17 '22 02:10 Kadah

Hi, for anyone who is still struggling with the envionment installation, please send an email to [email protected].

EricGuo5513 avatar Nov 08 '22 17:11 EricGuo5513

Hi I am still struggling with psbody mesh installation. None of these worked for me.

pip install git+https://github.com/MPI-IS/mesh.git pip install psbody-mesh==0.4

I am on Ubuntu 18.04.6 LTS. Thanks Mohammad

mmdrahmani avatar Dec 16 '22 05:12 mmdrahmani

I successfully installed psbody-mesh. Hope these can help you. First, run sudo apt-get install libboost-dev Then pip install git+https://github.com/MPI-IS/mesh.git

XingliangJin avatar Dec 29 '22 14:12 XingliangJin

what helped with psbody-mesh installation issues for me was sudo apt-get install libboost-dev sudo apt install gcc g++

katsully avatar Jan 31 '23 17:01 katsully

In centos8, it work for me.

Remove the following from yaml: body-visualizer==1.1.0 configer==1.4.1 psbody-mesh==0.4

Replace by: pip install git+https://github.com/nghorbani/body_visualizer.git pip install git+https://github.com/MPI-IS/configer sudo yum -y install boost-devel pip install git+https://github.com/MPI-IS/mesh.git

liujf69 avatar Dec 22 '23 06:12 liujf69