Pooch dependece
jdiasn opened this issue · 0 comments
jdiasn commented
- LIDAR Suit version: 0.2.2
- Python version: 3.8
- Operating System: MacOS Ventura
Description
While importing lidarwind, an exception occurred. lidarwind did not find pooch, which is needed for the module utilities. Probably pooch needs to be included in the list of dependencies.
What I Did
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Input In [1], in <cell line: 1>()
----> 1 import lidarwind
File /opt/miniconda3/envs/lidarwind/lib/python3.8/site-packages/lidarwind/__init__.py:28, in <module>
26 from .wind_prop_retrieval_6_beam import *
27 from .visualization import *
---> 28 from .utilities import *
29 from .data_operator import *
30 from .data_attributes import *
File /opt/miniconda3/envs/lidarwind/lib/python3.8/site-packages/lidarwind/utilities.py:11, in <module>
9 import gdown
10 import pandas as pd
---> 11 import pooch
12 import numpy as np
13 import xarray as xr
ModuleNotFoundError: No module named 'pooch'