-
Notifications
You must be signed in to change notification settings - Fork 29
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
Requirements #13
Comments
Hi! If I understand you correctly, you were using the same Python environment from installing Also, can you paste here the full error message from the console? When the error shows up in the app, a much more detailed printout will be shown in the console which will help greatly with debugging. |
I had the same problem, and I didn't get any errors when installing the environment. I tried to run the requirements.txt file from the source repo and got an error when I got to torch. ERROR: Could not find a version that satisfies the requirement torch==1.9.1 matching distribution found for torch==1.9.1 |
Hi @dustovshio! I would advise the same, which is to recreate the Python environment using the instructions in this repo, instead of reusing the one from EleutherAI/vqgan-clip. The EleutherAI repo uses Pytorch 1.9 while this uses Pytorch 1.10, which is needed to allow |
how do you "recreate the environment" I already stated I tried the method to create the environment and when got the same pytorch error which is why I went to the original source in the first place. CondaValueError: prefix already exists: C:\Users\d\anaconda3\envs\vqgan-clip-app ModuleNotFoundError: No module named 'torch' I was getting errors for several of the other libraries and modules but I manually installed them and they went away. But for some reason I can't seem to install torch. It looks like torch may not be compatible with python 3.9+ so I uninstalled and will try again with 3.8.10 |
RuntimeError: unexpected EOF, expected 13177868 more bytes. The file might be corrupted. |
Hi dustovshio, the latest error message posted throws an error when loading the models, so it is possible that the model you were trying to load is corrupted and needs to be re-downloaded. The default model is If you had issues with specific libraries before, chances are manually installing packages to resolve their respective errors broke your Pytorch installation, especially if you used pip to install packages. The requirements in the EleutherAI/vqgan-clip repo pins the exact specifications of all packages used, which works very well if you just want to run their code only, but not so much for compatibility with other use cases. I would be surprised if this app can still run after doing pip install using their requirements. To resolve the |
Hello,
I installed all and took requirement libs from EleutherAI/vqgan-clip repo. I can get imagenet, wiki and coco dataset working but others will not work. Are those libs up to date? Thus having error
ModuleNotFoundError: No module named 'taming.modules.misc'
The text was updated successfully, but these errors were encountered: