magic-animate icon indicating copy to clipboard operation
magic-animate copied to clipboard

requirements.txt

Open Atlas3DSS opened this issue 1 year ago • 15 comments

mutliple files not available in requirements.txt from nvidia. "ERROR: Could not find a version that satisfies the requirement nvidia-nccl-cu11==2.14.3 (from versions: 0.0.1.dev5) ERROR: No matching distribution found for nvidia-nccl-cu11==2.14.3" "ERROR: Ignored the following yanked versions: 8.9.4.19 ERROR: Could not find a version that satisfies the requirement nvidia-cudnn-cu11==8.5.0.96 (from versions: 0.0.1.dev5, 8.9.4.25, 8.9.5.29) ERROR: No matching distribution found for nvidia-cudnn-cu11==8.5.0.96"

Atlas3DSS avatar Dec 04 '23 20:12 Atlas3DSS

Same problem (Windows 11): ERROR: Could not find a version that satisfies the requirement nvidia-cudnn-cu11==8.5.0.96 (from versions: 0.0.1.dev5, 8.9.4.19, 8.9.4.25, 8.9.5.29) ERROR: No matching distribution found for nvidia-cudnn-cu11==8.5.0.96

mp3pintyo avatar Dec 04 '23 20:12 mp3pintyo

same error ~even when I remove it from requirement.txt it tries to install.~

~edit: maybe its something to do with environment.yaml. i might be installing wrong~

JD1234JD1234 avatar Dec 04 '23 21:12 JD1234JD1234

ERROR: Could not find a version that satisfies the requirement nvidia-cudnn-cu11==8.5.0.96 (from versions: 0.0.1.dev5, 8.9.4.25, 8.9.5.29) ERROR: No matching distribution found for nvidia-cudnn-cu11==8.5.0.96

Koningsbruggen avatar Dec 04 '23 22:12 Koningsbruggen

It works with conda though

MaximilianKr avatar Dec 04 '23 22:12 MaximilianKr

i am making an auto installer for Windows Python 3.10

this thing is so hard to make it work haha

image

FurkanGozukara avatar Dec 05 '23 00:12 FurkanGozukara

Hello, thanks for the interest. @przvlprd is correct. beloew is how I create the env using pip:

conda create -n manimate python=3.8 -y
conda activate manimate
pip install -r requirements.txt

I still created environment using conda, will update these instructions soon.

zcxu-eric avatar Dec 05 '23 06:12 zcxu-eric

Hello, thanks for the interest. @przvlprd is correct. beloew is how I create the env using pip:

conda create -n manimate python=3.8 -y
conda activate manimate
pip install -r requirements.txt

I still created environment using conda, will update these instructions soon.

ERROR: Ignored the following versions that require a different python version: 1.21.2 Requires-Python >=3.7,<3.11; 1.21.3 Requires-Python >=3.7,<3.11; 1.21.4 Requires-Python >=3.7,<3.11; 1.21.5 Requires-Python >=3.7,<3.11; 1.21.6 Requires-Python >=3.7,<3.11 ERROR: Could not find a version that satisfies the requirement nvidia-cudnn-cu11==8.5.0.96 (from versions: 0.0.1.dev5, 8.9.4.19, 8.9.4.25, 8.9.5.29) ERROR: No matching distribution found for nvidia-cudnn-cu11==8.5.0.96

Still getting these errors.

charliebrown777 avatar Dec 05 '23 06:12 charliebrown777

Hello, thanks for the interest. @przvlprd is correct. beloew is how I create the env using pip:

conda create -n manimate python=3.8 -y
conda activate manimate
pip install -r requirements.txt

I still created environment using conda, will update these instructions soon.

ERROR: Ignored the following versions that require a different python version: 1.21.2 Requires-Python >=3.7,<3.11; 1.21.3 Requires-Python >=3.7,<3.11; 1.21.4 Requires-Python >=3.7,<3.11; 1.21.5 Requires-Python >=3.7,<3.11; 1.21.6 Requires-Python >=3.7,<3.11 ERROR: Could not find a version that satisfies the requirement nvidia-cudnn-cu11==8.5.0.96 (from versions: 0.0.1.dev5, 8.9.4.19, 8.9.4.25, 8.9.5.29) ERROR: No matching distribution found for nvidia-cudnn-cu11==8.5.0.96

Still getting these errors.

Hi, how about skip these cuda and cudnn related libraries? I think it can still work if you've installed CUDA correctly.

zcxu-eric avatar Dec 05 '23 06:12 zcxu-eric

Hello, thanks for the interest. @przvlprd is correct. beloew is how I create the env using pip:

conda create -n manimate python=3.8 -y
conda activate manimate
pip install -r requirements.txt

I still created environment using conda, will update these instructions soon.

ERROR: Ignored the following versions that require a different python version: 1.21.2 Requires-Python >=3.7,<3.11; 1.21.3 Requires-Python >=3.7,<3.11; 1.21.4 Requires-Python >=3.7,<3.11; 1.21.5 Requires-Python >=3.7,<3.11; 1.21.6 Requires-Python >=3.7,<3.11 ERROR: Could not find a version that satisfies the requirement nvidia-cudnn-cu11==8.5.0.96 (from versions: 0.0.1.dev5, 8.9.4.19, 8.9.4.25, 8.9.5.29) ERROR: No matching distribution found for nvidia-cudnn-cu11==8.5.0.96 Still getting these errors.

Hi, how about skip these cuda and cudnn related libraries? I think it can still work if you've installed CUDA correctly.

I found this auto installation version and it seems to solve my problem here. https://github.com/sdbds/magic-animate-for-windows

charliebrown777 avatar Dec 05 '23 07:12 charliebrown777

mutliple files not available in requirements.txt from nvidia. "ERROR: Could not find a version that satisfies the requirement nvidia-nccl-cu11==2.14.3 (from versions: 0.0.1.dev5) ERROR: No matching distribution found for nvidia-nccl-cu11==2.14.3" "ERROR: Ignored the following yanked versions: 8.9.4.19 ERROR: Could not find a version that satisfies the requirement nvidia-cudnn-cu11==8.5.0.96 (from versions: 0.0.1.dev5, 8.9.4.25, 8.9.5.29) ERROR: No matching distribution found for nvidia-cudnn-cu11==8.5.0.96"

nccl can only be installed and run in linux OS,btw in case you run this project successfully in windows,the inference speed will be slower than linux

frankchieng avatar Dec 05 '23 13:12 frankchieng

finally released full scripts including auto DensePose maker : https://github.com/magic-research/magic-animate/issues/44

FurkanGozukara avatar Dec 05 '23 21:12 FurkanGozukara

There is an issue with installing on Windows, you can view this video: https://www.bilibili.com/video/BV1ig4y1f7BQ/?share_source=copy_web&vd_source=842db193ae3e8fc29019a57821e30000

huiyichanmian avatar Dec 06 '23 08:12 huiyichanmian

There is an issue with installing on Windows, you can view this video: https://www.bilibili.com/video/BV1ig4y1f7BQ/?share_source=copy_web&vd_source=842db193ae3e8fc29019a57821e30000

i've installed on linux,windows is not my option,cuz the nvidia-nccl library only support on linux,btw,if you run in windows,it will be slower than linux

frankchieng avatar Dec 06 '23 08:12 frankchieng

windows installation working but making it work is really hard https://github.com/magic-research/magic-animate/issues/44

FurkanGozukara avatar Dec 06 '23 11:12 FurkanGozukara

windows installation working but making it work is really hard #44

Yes, I met several errors when install with python3.11, and reverted to 3.9 on WSL, however met more errors than 3.11

sunyq1995 avatar Dec 07 '23 15:12 sunyq1995