It'd be nice to install this without having to downgrade to torch 1.7.1 (as well as torchvision and some others).
It seems like this is being forced by the clip-by-openai package on pypi. Not sure I trust a random package like this (plus it's behind on commits by a few months), and I'd recommend installing directly from the official git repo.
I'm not sure if this can work inside a requirements.txt file, but this is what I usually do:
pip install git+https://github.com/openai/CLIP
I have an alternative in just doing a pip install memery --no-deps but then I'd have to gather all the missing dependencies manually.
It'd be nice to install this without having to downgrade to torch 1.7.1 (as well as torchvision and some others).
It seems like this is being forced by the
clip-by-openaipackage on pypi. Not sure I trust a random package like this (plus it's behind on commits by a few months), and I'd recommend installing directly from the official git repo.I'm not sure if this can work inside a requirements.txt file, but this is what I usually do:
pip install git+https://github.com/openai/CLIPI have an alternative in just doing a
pip install memery --no-depsbut then I'd have to gather all the missing dependencies manually.