📜  pip install ssh with yes - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:33:42.136000             🧑  作者: Mango

安装 SSH 时使用自动确认模式

当我们使用 pip 命令安装 SSH 时,通常会出现需要确认的提示,如是否确认安装、是否确认覆盖文件等等。本文将介绍如何使用自动确认模式,解决这个麻烦。

方案

使用 SSH 自动确认模式的方案是在 pip 命令之后加上 -y--yes 参数。这个参数告诉 pip 命令自动确认所有提示,无需手动输入。

pip install ssh -y
示例

以下是在 Shell-Bash 中使用 pip 安装 SSH 的示例:

$ pip install ssh -y
Collecting ssh
  Downloading ssh-1.0.tar.gz (1.7 kB)
Building wheels for collected packages: ssh
  Building wheel for ssh (setup.py) ... done
  Created wheel for ssh: filename=ssh-1.0-py3-none-any.whl size=2220 sha256=3053ff6342d053eb104c0f9b0d2110128e8b1c1ca39cf62de745c86937a044d8
  Stored in directory: /root/.cache/pip/wheels/35/01/eb/0572b430c86d8d5b0777c63efded9daa7b4ae232731e4f63bd
Successfully built ssh
Installing collected packages: ssh
Successfully installed ssh-1.0
总结

使用自动确认模式可以避免手动确认每个提示,提高程序员的工作效率。希望这篇文章对你有所帮助。