-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CLIP Install #1
Comments
Once we get that working - this would be a great PR to include in the larger DALLE-pytorch codebase. It is part of the original paper - after all. |
Hey @afiaka87, ah ok I see, did not notice for the name collision, thanks, found this https://stackoverflow.com/questions/60414753/how-to-install-githttps-from-setup-py-using-install-requires as a possible solution where we would give the repo link of CLIP directly in |
I have one last idea, but I'm now thinking it may not work actually because it works with git clone, but not necessarily pip cd clip_rerank;
git status # make sure you're all up to date
git submodule add https://github.com/openai/CLIP.git;
git status # should have a 'CLIP' folder now.
git commit -am "add the OpenAI CLIP repo to the project as a submodule"
git status
git push Then maybe you could set an entry point located at |
Have you found a way to reliably install OpenAI's CLIP via setup.py?
There's a namespace collision with another pip package which predates the OpenAI package that makes this difficult in my experience.
The text was updated successfully, but these errors were encountered: