Python 大多数时候并不自带 pip 模块,本文介绍如何在 Python 交互界面直接安装这个模块
前言
其实核心思想就是使用 Python 自带的模块去下载 get-pip.py
并执行。下面的代码压缩到一行了,可以直接复制粘贴回车三连。(๑•̀ㅂ•́) ✧
Python 2.7
1 | from urllib2 import urlopen; exec(urlopen('https://bootstrap.pypa.io/pip/2.7/get-pip.py').read()) |
Python 3.6+
1 | from urllib.request import urlopen; exec(urlopen('https://bootstrap.pypa.io/get-pip.py').read()) |