我想尝试一下Python的Geemap模块,我通过conda install geemap -c conda-forge安装了它。但是,在我的pyhton代码中导入它时,我有一条错误消息:The 'pyasn1-modules>=0.2.1' distribution was not found and is required by google-auth。所以我更新了pyasn1-modules,现在我有了0.2.8版本,但是错误仍然存在。如果有人有主意..。
发布于 2022-05-03 17:30:36
通过conda卸载版本,并通过pip安装版本。
conda remove --force pyasn1-modules
pip install pyasn1-modules这解决了我的问题-尽管它没有意义,它应该!
发布于 2021-12-17 05:02:52
康达是我的问题所在。尝试创建一个新的环境,用pip安装所有的东西,这样就消除了错误。
https://stackoverflow.com/questions/69542123
复制相似问题