2.3. pip - A tool for installing and managing Python packages
https://pip.readthedocs.io/en/stable/installing/ 2.3.1.安装 pip 2.3.1.1.使用 easy_install 安装 pip 使用easy_install安装pip, 同时pip也是easy_install替代品 # easy_install pip 2.3.1.2.Ubuntu 安装 pip $ sudo apt install python3-pip 2.3.1.3.Mac neo@MacBook-Pro ~ % brew install python3 neo@MacBook-Pro ~ % pip3 install scrapy 安装 python3 会携带 pip3 命令 2.3.2.pip 命令 查询包 $ pip search "Markdown" 安装包 $ pip install Markdown 安装特定版本的包, 通过使用 ==, >=, <=, >, < 来指定一个版本号。 $ pip install 'Markdown<2.0' $ pip install 'Markdo...