我正在尝试使用SentinelAPI捕捉房屋的屋顶。在jupyter notebook中运行以下代码时,我得到了以下错误。没有名为“sentinelsat”的模块
我也试过了
api = SentinelAPI('*username*','*password*!','https://scihub.copernicus.eu/dhus') 在命令行中,我收到以下错误:
NameError: name 'SentinelAPI' is not defined发布于 2020-06-21 21:53:08
尝试在开始时使用以下命令:
!pip install <module>这是因为内部jupyter库可能无法工作。因此,尝试使用此命令。此命令将安装库。
https://stackoverflow.com/questions/62498469
复制相似问题