-
Notifications
You must be signed in to change notification settings - Fork 25
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
SSL: CERTIFICATE_VERIFY_FAILED at "esp.get_model("latest")" step #215
Comments
@beavenah It seems like your network is doing something strange when trying to download the model. The good news is that you can indeed download the model yourself and load it from a path using import torch
espaloma_model = torch.load("/path/to/espaloma-latest.pt")
espaloma_model.eval() I hope this works! |
Thanks, @ijpulidos ! The suggestion seems to have worked (output below):
|
I have one more question -- let me know if I should open a new issue... Seems basic, but I haven't been able to get it to work out. I want to write the force field information in GROMACS format, which I figure should be done via Interchange.
I'm unsure of what I should do to correctly Interchange here. Thanks again for all of the help! |
@mattwthompson might have the answer |
Hey @beavenah, It looks like you're on the right track, but
|
Thank you, @mikemhenry and @mattwthompson! It appears that I have a functional script based on other GitHub discussions I've seen... But, I'll still plan to open a new discussion at the openFF GitHub. I'll just check a few more things on my end first. |
Hi all,
I'm using a MacBook M3 and using mandatory Zscaler for security. I was able to install espaloma on my laptop, but when I get to the "esp.get_model("latest")" step, I get:
It was recommended that I try
pip3 install pip_system_certs --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org --trusted-host github.com
in my conda base and espaloma conda, but I get the same SSL errors. Does anyone have a recommendation of what to do? Can I download theespaloma-latest.pt
myself and use it instead of trying to pull it from GitHub in the python script? If so, how would I change the script?Thanks again!
The text was updated successfully, but these errors were encountered: