安装出现如下问题Looking in indexes: https://mirrors.ustc.edu.cn/pypi/web/simple ERROR: Could not find a version that satisfies the requirement THSData (from versions: none) ERROR: No matching distribution found for THSData
时间: 2023-08-14 18:43:49 浏览: 294
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个问题可能是因为THSData库并没有上传到镜像源中,你需要从其他源中安装该库。可以尝试使用以下命令安装:
```python
pip install git+https://github.com/zengbin93/THSData.git
```
这个命令会从GitHub上拉取THSData库并安装。另外,你也可以尝试在本地下载THSData代码库后使用以下命令进行安装:
```python
pip install <本地THSData库路径>
```
注意,这些方法可能需要一些额外的依赖库,你需要根据提示进行安装。
阅读全文