来源scikit-learn
pip install -U scikit-learn
不懂这个参数到底是干嘛用的。
pip install -h 就有说明了,就是 --upgrade,意思是如果已安装就升级到最新版。
pip install -h
--upgrade
-U 是 --upgrade 的简写。就是把所有包升级到最新版。
-U
可以使用 man pip 查看其介绍:
man pip
$ man pip -U, --upgrade Upgrade all packages to the newest available version. This process is recursive regardless of whether a dependency is already satisfied.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
pip install -h
就有说明了,就是--upgrade
,意思是如果已安装就升级到最新版。-U
是--upgrade
的简写。就是把所有包升级到最新版。可以使用
man pip
查看其介绍: