C:\WINDOWS\system32>pip install python-snap7==1.4.2 ERROR: Could not find a version that satisfies the requirement python-snap7==1.4.2 (from versions: 0.1, 0.2, 0.2.1, 0.2.2, 0.3, 0.3.1, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 0.10, 0.11, 1.0, 1.1, 1.2, 1.3) ERROR: No matching distribution found for python-snap7==1.4.2
时间: 2023-10-06 08:10:11 浏览: 178
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误消息意味着在PyPI存储库中没有找到名为python-snap7==1.4.2的版本。
您可以尝试使用以下命令来安装最新版本的Snap7库:
```
pip install python-snap7 --upgrade
```
如果您需要特定版本的Snap7库,请检查可用的版本并使用适当的版本号进行安装。您可以使用以下命令列出可用版本:
```
pip install python-snap7== --no-cache-dir
```
这将列出所有可用版本的Snap7库。然后,您可以使用适当的版本号来安装特定版本的Snap7库。
阅读全文