命令笔记

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的文件了

你可能感兴趣的:(命令笔记)