美文网首页
命令笔记

命令笔记

作者: 王超_vip | 来源:发表于2018-12-20 11:51 被阅读0次

git clone --recursive https://github.com/rbgirshick/fast-rcnn.git

Git命令 --recursive 会递归克隆fast-rcnn项目下面的所有git项目

ruby

更新rake工具:gem update rake

下载bundle:  gem install bundle

查询python支持的wheel:

import pip._internal

print(pip._internal.pep425tags.get_supported())

import pip

print(pip.pep425tags.get_supported())

wheel文件安装:

当然也可以自己下载.whl文件进行安装

wheel文件本质上就是zip或者rar,只不过他更加方便python的安装以及使用。在之前的图片中我们只要使用pip install wheel 就可以安装wheel。

之前直接使用pip install beautifulsoup来安装beautifulsoup,

在安装了wheel之后我们可以使使用pip install XXX.whl来安装.whl的文件了

相关文章

网友评论

      本文标题:命令笔记

      本文链接:https://www.haomeiwen.com/subject/foxykqtx.html