-
Notifications
You must be signed in to change notification settings - Fork 10
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
Javascript install through ee.install
raised HTTP Error 404
and ee.require
takes a long loading time
#30
Comments
ee.install
raised HTTP Error 404
and ee.require
takes a long loading time
Hi @suhendra0812 can you share with us a reproducible example? thanks :D |
Hi, @csaybar import ee
import eemont
ee.Initialize()
mod = "users/marcyinfeng/utils:SIAC"
ee.install(mod)
siac = ee.require(mod) The example is just as simple as that. With the native script of |
Hi @suhendra0812 sorry for the late reply, soon I will try to fix this issue and add it to our unit test to make sure it doesn't happen again. Happy New Year! |
I have a similar issue: HTTPError: HTTP Error 404: Not Found. import ee, eemont |
Hey @csaybar any headway on this error?
Error:
Kindly, Collins |
Hello, I have the same problem. How can I solve it? |
Hi everyone. Also got the same issue. Any progress on fixing it? Cheers. |
I got the same issue on python |
Hi, all.
I encountered some issues when installing javascript module using
ee.install
. It raisedHTTP Error 404: Not Found
.It seems caused by the colon replacement which is insufficient for other cases. I found some javascript modules which have unusual path such as:
users/marcyinfeng/Algorithms:/mcd19_prior
andusers/marcyinfeng/Algorithms/:/S2_view_angle
I try to normalize the path using
pathlib
as follows:All dependencies were installed successfully:
But it takes a long time when loading the module using
ee.require
. Is it depend on how many other dependent modules?Please, fixed this issue if possible. Thank you in advance.
Best regards,
Suhendra
The text was updated successfully, but these errors were encountered: