-
Notifications
You must be signed in to change notification settings - Fork 28
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
error in loading path #8
Comments
Hi @farliz, Did you run it using Binder or locally? Because I checked on Binder and runs as supposed. |
I run it locally... I will reinstall the package ... |
Can confirm this happens locally with Python 3.8 on Ubuntu 20.04. |
I could fix it by replacing the line: eopatch = EOPatch.load(INPUT_EOPATCH, lazy_loading=True) by: eopatch = EOPatch.load(str(INPUT_EOPATCH), lazy_loading=True) |
Hi @geh, this notebook is a bit outdated. I recommend checking the more up-to-date version of this notebook in the main eo-learn repository. |
I'm trying to follow the tutorial but executing the first code of eolearn_basics.ipynb, I get the following error.
...`
---> 28 if path.startswith('s3://'):
29 return load_s3_filesystem(path, *kwargs)
30
AttributeError: 'PosixPath' object has no attribute 'startswith'
`
I don't have experience in programming, please help me to solve this.
Cheers
The text was updated successfully, but these errors were encountered: