Fail to Installation
Closed this issue · 4 comments
Bwformer commented
nbren12 commented
Hi. It's hard to tell. What version of python/pip are you using?
Bwformer commented
I try to install it with the following environment:
python=3.10.4
pip=22.1.2
And I updated the pip to the latest version (pip-24.2), but it failed again.
Do you have any comments about the required environment?
Thanks.
nbren12 commented
huh. I've run on python=3.10 (and probably lower).
Looking at your error, I think it is not interpreting the string earth2grid
as a file path but as a package name instead. It fails to find anything named earth2grid
in the public repositories.
To fix, please run
pip install --no-build-isolation ./earth2grid
The "./" will force pip to interpret the argument as a path.
I'll fix the typo in the docs.