williamyang1991 / FRESCO

[CVPR 2024] FRESCO: Spatial-Temporal Correspondence for Zero-Shot Video Translation
https://www.mmlab-ntu.com/project/fresco/
Other
731 stars 71 forks source link

changed requirements.txt to python std + added pipenv Pipfile #17

Closed boxabirds closed 8 months ago

boxabirds commented 8 months ago

There's a standard format for requirements.txt which I've converted the original file to. Also as I find it so much easier to work with than anything else for managing python projects, I created a pipenv Pipfile which makes the requirements.txt file unnecessary. All you do is

pipenv install

and

pipenv shell

Any subsequent dependencies you install with

pipenv install <pip package>

williamyang1991 commented 8 months ago

Thank you for your pull request. @SingleZombie will take a look at it and check it.

SingleZombie commented 8 months ago

I tried to use pipenv, but it is much slower than pip install. I don't think we should use an installation tool that most users do not familiar with.

Thanks for your PR. I will update the requirements.txt to standard format and README in another PR.