cuiaiyu / dressing-in-order

(ICCV'21) Official code of "Dressing in Order: Recurrent Person Image Generation for Pose Transfer, Virtual Try-on and Outfit Editing" by Aiyu Cui, Daniel McKee and Svetlana Lazebnik
https://cuiaiyu.github.io/dressing-in-order
Other
513 stars 127 forks source link

Installing local-attn-reshape-cuda Requirement #14

Closed sanazsab closed 1 year ago

sanazsab commented 2 years ago

Hi,

I installed based on the guidance in GFLA, but still there is the below error ERROR: Could not find a version that satisfies the requirement local-attn-reshape-cuda==0.0.0 (from versions: none) ERROR: No matching distribution found for local-attn-reshape-cuda==0.0.0

Thanks for your prompt response in advance.

Best Sanaz

cuiaiyu commented 2 years ago

Check if you have install those CUDA functions as instructed in GFLA's setup

cd ./model/networks/block_extractor
python setup.py clean --all install --user

cd ..
cd local_attn_reshape
python setup.py clean --all install --user

cd ..
cd resample2d_package
python setup.py clean --all install --user
sanazsab commented 2 years ago

GFLA's setup

Thanks for your response. However, yes, I check it out again, still there is a problem

jerry940080 commented 2 years ago

I got this problem after finishing setup of gfla Processing /tmp/build/80754af9/cffi_1606255098796/work ERROR: Could not install packages due to an OSError: [Errno 2] No such file or directory'/tmp/build/80754af9/cffi_1606255098796/work'

sanazsab commented 2 years ago

I got this problem after finishing setup of gfla Processing /tmp/build/80754af9/cffi_1606255098796/work ERROR: Could not install packages due to an OSError: [Errno 2] No such file or directory'/tmp/build/80754af9/cffi_1606255098796/work'

This problem is a little bit different, you should change this command to the version of cffi, like pillow==8.0.0.

cuiaiyu commented 2 years ago

Is

GFLA's setup

Thanks for your response. However, yes, I check it out again, still there is a problem

Was there any error message pop out when you installed the GFLA's functions?

sanazsab commented 2 years ago

Is

GFLA's setup

Thanks for your response. However, yes, I check it out again, still there is a problem

Was there any error message pop out when you installed the GFLA's functions?

Yes, Exactly and the error is the same as above.

cuiaiyu commented 2 years ago

Is

GFLA's setup

Thanks for your response. However, yes, I check it out again, still there is a problem

Was there any error message pop out when you installed the GFLA's functions?

Yes, Exactly and the error is the same as above.

Ah.. so the error occurred during the installation.

Are all the three installation having this error or only one of them? Was the installation command run under directory ./model/networks/block_extractor for example?

sanazsab commented 2 years ago

Is

GFLA's setup

Thanks for your response. However, yes, I check it out again, still there is a problem

Was there any error message pop out when you installed the GFLA's functions?

Yes, Exactly and the error is the same as above.

Ah.. so the error occurred during the installation.

Are all the three installation having this error or only one of them? Was the installation command run under directory ./model/networks/block_extractor for example?

Thanks, I can get over this error. But I run my program from ssh and this error pops up: ImportError: libGL.so.1: cannot open shared object file: No such file or directory

I do not have access to the root to install libGL.so.1

fyviezhao commented 2 years ago

@sanazsab Hi, I also met this ImportError. It can be solved by sudo apt install libgl1-mesa-glx. You may need reach out to the server manager for installing this package since it requires root privilege.