Collecting pyssh Could not find a version that satisfies the requirement pyssh (from versions: ) No matching distribution found for pyssh
时间: 2023-11-11 20:06:50 浏览: 143
很抱歉,我之前提到的 PySSH 库名称存在错误。正确的库名称应该是 paramiko。你可以使用以下命令来安装 paramiko 库:
```python
pip install paramiko
```
安装完成后,你可以按照之前提到的方法来使用 paramiko 库来远程控制。如果还有其他疑问,请随时问我。
相关问题
Collecting numpy Could not find a version that satisfies the requirement numpy (from versions: ) No matching distribution found for numpy
This error occurs when the version of `pip` you are using is outdated or the package index is not up-to-date. You can try the following steps to resolve the issue:
1. Upgrade `pip` by running `pip install --upgrade pip`.
2. Try installing `numpy` again by running `pip install numpy`.
3. If step 2 fails, you can try updating the package index by running `pip install --upgrade setuptools`.
4. Try installing `numpy` again.
If none of the above steps work, you can try installing `numpy` using a binary distribution specific to your operating system. You can find the appropriate binary distribution for your operating system on the official `numpy` website.
Collecting ruamel Could not find a version that satisfies the requirement ruamel (from versions: ) No matching distribution found for ruamel
这个错误提示表明无法找到名为 ruamel 的包或没有与您当前使用的 Python 版本兼容的版本。请确认一下您是否正确拼写了包的名称,并且尝试使用 pip search 命令来搜索一下这个包是否存在。如果包存在,您可以尝试更新 pip,然后再次尝试安装,命令如下:
```
pip install --upgrade pip
pip install ruamel
```
如果您使用的是 Python 2 版本,可能需要使用 pip2 命令来安装这个包。如果您仍然无法安装该包,建议您查看一下该包的官方文档或者咨询一下相关的技术支持人员。
阅读全文