pip 与pip3

pip 3用于python3 版本

pip2 用于python2版本

pip好像可以通用

“pip2” is for Python2, “pip3″ is for Python3. “pip” will point to one of these depending on which Python is the default on your system.

If you are installing the packages system wide, you should either use your OS’s package manager or use “pip2” or “pip3” as appropriate. If you want the package to be available to both Python versions then you will need to install it twice. If your package is written to be compatible with both Python 2 and Python 3, then it will probably already be packaged for both versions.

You should also consider using a “virtualenv” instead of installing packages system-wide

时间: 2024-11-10 18:28:34

pip 与pip3的相关文章

ubuntu 16.04安装pip、pip3、ipython和ipython3

在ubuntu 16.04 server版上安装pip.pip3.ipython2和ipython3 具体步骤如下: [email protected]:~$ sudo apt install python3-pip [email protected]:~$ sudo apt install python-pip [email protected]:~$ sudo pip3 install ipython [email protected]:~$ wget https://pypi.python

pip和pip3的区别

安装了python3之后,会有pip3 1. 使用pip install XXX 新安装的库会放在这个目录下面 python2.7/site-packages 2. 使用pip3 install XXX 新安装的库会放在这个目录下面 python3.6/site-packages 如果使用python3执行程序,那么就不能import python2.7/site-packages中的库 原文地址:https://www.cnblogs.com/liuyanerfly/p/8677868.htm

centos 7 安装pip和pip3

首先安装epel扩展源: yum -y install epel-release 更新完成之后,就可安装pip: yum -y install python-pip 安装完成之后清除cache: yum clean all 安装epel-release和setuptools yum makecache yum install -y python34-setuptools 安装pip3 easy_install-3.4 pip ## 对安装好的pip进行升级 pip install --upgra

pip 和pip3的区别

前言装完python3后发现库里面既有pip也有pip3,不知道它们的区别,因此特意去了解了一下. 解释先搜索了一下看到了如下的解释, 安装了python3之后,库里面既会有pip3也会有pip 1. 使用pip install XXX 新安装的库会放在这个目录下面 python2.7/site-packages 2. 使用pip3 install XXX 新安装的库会放在这个目录下面 python3.6/site-packages 如果使用python3执行程序,那么就不能import pyt

Python:pip 和pip3的区别

前言装完python3后发现库里面既有pip也有pip3,不知道它们的区别,因此特意去了解了一下. 解释先搜索了一下看到了如下的解释, 安装了python3之后,库里面既会有pip3也会有pip 1. 使用pip install XXX 新安装的库会放在这个目录下面 python2.7/site-packages 2. 使用pip3 install XXX 新安装的库会放在这个目录下面 python3.6/site-packages 如果使用python3执行程序,那么就不能import pyt

多版本python的pip 升级后, pip2 pip3 与python版本失配

mint19.2   本来pip 和 pip2 对应 python2.7   pip3对应python3.6 用源码安装了python3.7之后. 这样 版本也没问题. 但是,  用pip3.7 安装包的时候 提示 pip需要升级,  但是一旦升级, 就不对了 pip  pip2 pip3 都指向了pip3.7 这导致一系列问题. 包pgadmin4 启动后报 csrf 错误 , 甚至进而导致docker-compose模式下postgres服务下线! 而且,无法用重装python-pip, p

windows下如何安装pip以及如何查看pip是否已经安装成功?

最近刚学习python,发现很多关于安装以及查看pip是否安装成的例子都比较老,不太适合于现在(python 3.6 )因此,下一个入门级别的教程. 0:首先如何安装python我就不做介绍了. 1:如果安装的是python3.4版本以上的,就不需要重新安装.此处给出官方链接   https://pip.pypa.io/en/stable/installing/ 然后你只需要在你安装的python的python\scripts文件中查看是否有以下文件 比如pip.exe   pip3.6.exe

pip的简单安装与基本使用

pip是python著名的包管理工具,在python开发中必不可少.本文只介绍各平台最新可用并且最简单的pip安装方式,以方便初学者和不会敲代码只需通过pip安装特定工具的小伙伴们. 注:文中的示例皆设定为不使用python2直接安装python3,然后将pip关联到新安装的python3版本. 安装前的准备工作: 非Windows用户首先需要确认系统中是否已经安装过python和pip,并确定运行python3的命令,以免造成版本混乱.重复安装和pip关联错误等问题. BSD, Unix/Li

FreeBSD中Python3使用pip,scrapy,sqlite3问题

FreeBSD中Python3使用pip,scrapy,sqlite3问题 问题一: FreeBSD修改python的默认版本 在/usr/local/bin目录下, mv python python.old ln -s pythonX.X  python in X.X write your version 问题二: Python3 无法使用pip With Python 3.4 and later, you can use the ensurepip module to install pip