hyriver / py3dep

A part of HyRiver software stack for getting topography data within the US through 3D Elevation Program (3DEP)
https://docs.hyriver.io
Other
42 stars 7 forks source link

Issues in using "get_map()" library from "py3dep" #51

Closed rezaulwre closed 2 years ago

rezaulwre commented 2 years ago

What happened: I am trying to use "get_map" module within "py3dep", but it gives error as shown below. How to solve it. I am using Python 3.7.13 with anaconda.

What you expected to happen:

Minimal Complete Verifiable Example:

# Put your MCVE code here

Anything else we need to know?:

Environment: py3dep.show_versions()

ImportError Traceback (most recent call last)

in ----> 1 py3dep.show_versions() ~\anaconda3\lib\site-packages\py3dep\print_versions.py in show_versions(file) 168 for (modname, ver_f) in deps: 169 try: --> 170 mod = _get_mod(modname) 171 except ModuleNotFoundError: 172 deps_blob.append((modname, None)) ~\anaconda3\lib\site-packages\py3dep\print_versions.py in _get_mod(modname) 94 return sys.modules[modname] 95 try: ---> 96 return importlib.import_module(modname) 97 except ModuleNotFoundError: 98 return importlib.import_module(modname.replace("-", "_")) ~\anaconda3\lib\importlib\__init__.py in import_module(name, package) 125 break 126 level += 1 --> 127 return _bootstrap._gcd_import(name[level:], package, level) 128 129 ~\anaconda3\lib\importlib\_bootstrap.py in _gcd_import(name, package, level) ~\anaconda3\lib\importlib\_bootstrap.py in _find_and_load(name, import_) ~\anaconda3\lib\importlib\_bootstrap.py in _find_and_load_unlocked(name, import_) ~\anaconda3\lib\importlib\_bootstrap.py in _load_unlocked(spec) ~\anaconda3\lib\importlib\_bootstrap_external.py in exec_module(self, module) ~\anaconda3\lib\importlib\_bootstrap.py in _call_with_frames_removed(f, *args, **kwds) ~\anaconda3\lib\site-packages\pygeos\__init__.py in 32 # end delvewheel patch 33 ---> 34 from .lib import GEOSException # NOQA 35 from .lib import Geometry # NOQA 36 from .lib import geos_version, geos_version_string # NOQA ImportError: DLL load failed while importing lib: The specified module could not be found.
Output of py3dep.show_versions() ``` ```
cheginit commented 2 years ago

Please feel free to open this issue you still have problem with this.