pip的基本命令和使用

Posted 小刘在C站

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pip的基本命令和使用相关的知识,希望对你有一定的参考价值。

·作者介绍:

♥️作者:小刘在C站

♥️每天分享课堂笔记,一起努力,共赴美好人生!

♥️夕阳下,是最美的绽放。

目录

一.pip介绍

二.pypi仓库

三.pip安装与使用

1.pip命令在哪里输入?

 2.pip的使用

 3.pip的安装库的基本命令

4.pip库的安装

 5.pip库的卸载

 6.列出已经安装的库

 7.展示某一个库的详细信息


一.pip介绍

pip 是一个现代的,通用的 Python 包管理工具。提供了对 Python 包的查找、下载、安装、卸载的功能。python2自带easy_install后来的python3自带的pip。

二.pypi仓库

我们都知道python有很多的第三方库或者说是模块。这些库针对不同的应用,发挥不一样的作用,我们在实际的项目中肯定会用到这些模块。那如何将这些模块导入到自己的项目中呢?

python官方的pypi仓库为我们提供了一个统一的代码托管仓库,所以的第三方库,甚至你自己写的开源模块,都可以发布到这里,让全世界的人分享下载。

三.pip安装与使用

1.pip命令在哪里输入?

win+R弹出运行框输入cmd进入命令行。进来以后要注意一点:pip不在python里面使用而是在系统命令行中执行命令,

 2.pip的使用

可以看见上面命令有一行提示,pip的排版是这样的,pip+命令+选项这样的类型。

 3.pip的安装库的基本命令

普通安装:             pip install xlwt

指定版本安装:         pip install pygame==1.9.6

协助已经安装的库:           pip  uninstall  xlwt

列出已经安装的库:    
pip list
pip freez

展示某一个库的信息:   pip   show   pygame

4.pip库的安装

在命令行界面输入pip    install   pygame就可以看见这个库我们安装成功了,pygame这个库呢是平常比如说我们编一个小游戏呀都会用到的一个库。

 5.pip库的卸载

上面写到了怎么卸载,我们来试一下输入pip uninstall pygame,就可以卸载了,后面会问到一个问题是说你确定卸载吗?y=是  n=不是,要卸载的话输入y就可以了。

 6.列出已经安装的库

还是在命令行里面输入上面的命令,pip list就可以呈现出这个我们安装过库了

 还有一个就是pip  freeze这个命令也是查看我们安装的库,我们来敲一下命令,看呈现的效果就是比上一个清晰有更标准的符号。

 7.展示某一个库的详细信息

这就是展现出来的一个效果,给大家说说这几个呈现出来比较有用的,

version后面是版本,安装的是哪一个版本。
Home-page这个是想要知道都有什么版本,可以去这个库的官网。
Location这个是库安装在了什么地方路径。

 

♥️关注,就是我创作的动力

♥️点赞,就是对我最大的认可

♥️这里是小刘,励志用心做好每一篇文章,谢谢大家。

pip 安装和基本操作(win10)

1. pip 安装

  •   python3 以上版本自带pip ,python2 版本需要去官网下载:https://pypi.org/project/pip/ , 下载文件的格式选择“source”,即压缩包形式。
  •        下载完成后,按快捷键 win+x , 在弹出的菜单中选择  Windows PowerShell(管理员),打开命令行界面。
    •   首先 , 解压缩安装包。
    •        其次,在命令界面,cd + 绝对路径   定位到pip 的安装文件根目录。
    •        在pip安装文件根目录中 ,应该存在文件 setup.py,  在命令行界面输入
      python setup.py install 
    • 安装成功后,在命令行输入, 显示应该如下所示:
      pip 

      技术分享图片

2.  pip的基本操作

  1. 安装包(安装 numpy包) :
    pip install request

     

  2.  更新包(numpy包已安装):
    pip install numpy --upgrade

     

  3. 查看已经安装的包的信息:(numpy包已安装)
    pip show numpy

     需要更详细的信息,输入:

    pip show --files numpy

     

  4. 查看已经安装的包:
    pip list 

     

  5. 卸载包:
    pip uninstall numpy 
  6. 需要更加详细的操作,可输入:
    pip --help

     会显示如下:

    PS C:\\Users\\GoFree> pip --help
    
    Usage:
      pip <command> [options]
    
    Commands:
      install                     Install packages.
      download                    Download packages.
      uninstall                   Uninstall packages.
      freeze                      Output installed packages in requirements format.
      list                        List installed packages.
      show                        Show information about installed packages.
      check                       Verify installed packages have compatible dependencies.
      config                      Manage local and global configuration.
      search                      Search PyPI for packages.
      wheel                       Build wheels from your requirements.
      hash                        Compute hashes of package archives.
      completion                  A helper command used for command completion.
      help                        Show help for commands.
    
    General Options:
      -h, --help                  Show help.
      --isolated                  Run pip in an isolated mode, ignoring environment variables and user configuration.
      -v, --verbose               Give more output. Option is additive, and can be used up to 3 times.
      -V, --version               Show version and exit.
      -q, --quiet                 Give less output. Option is additive, and can be used up to 3 times (corresponding to
                                  WARNING, ERROR, and CRITICAL logging levels).
      --log <path>                Path to a verbose appending log.
      --proxy <proxy>             Specify a proxy in the form [user:[email protected]]proxy.server:port.
      --retries <retries>         Maximum number of retries each connection should attempt (default 5 times).
      --timeout <sec>             Set the socket timeout (default 15 seconds).
      --exists-action <action>    Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup,
                                  (a)bort).
      --trusted-host <hostname>   Mark this host as trusted, even though it does not have valid or any HTTPS.
      --cert <path>               Path to alternate CA bundle.
      --client-cert <path>        Path to SSL client certificate, a single file containing the private key and the
                                  certificate in PEM format.
      --cache-dir <dir>           Store the cache data in <dir>.
      --no-cache-dir              Disable the cache.
      --disable-pip-version-check
                                  Don‘t periodically check PyPI to determine whether a new version of pip is available for
                                  download. Implied with --no-index.
      --no-color                  Suppress colored output

     



以上是关于pip的基本命令和使用的主要内容,如果未能解决你的问题,请参考以下文章

Python同时安装了python2和python3时,pip命令该如何使用?

pip的简单安装与基本使用

pip命令的使用与配置

pip命令的使用与配置

pytorch安装(使用pip3装到conda环境下)

python3 利用pip命令安装包和模块