pip install 安装指定版本的包

来源:互联网 发布:电脑windows无法启动 编辑:程序博客网 时间:2024/05/29 18:15

要用 pip 安装指定版本的 Python 包,只需通过 == 操作符 指定

pip install robotframework==2.8.7

将安装robotframework 2.8.7 版本。

1 0