如何在 python2.7.14 从源安装中包含 pip 包
How to include the pip package in python2.7.14 installation from sources
我需要从源安装 python2.7.14,我想在安装中包含 pip,我该如何完成?我认为这将通过配置脚本中的 --with-PACKAGE 开关来完成。我试过了:
./configure --enable-shared --with-pip=yes
./configure --enable-shared --with-pip-9.0.1=yes
./configure --enable-shared --with-pip-9.0.1-py2=yes
每次当我 运行 上述任一命令时得到 unrecognized option warning
。那么怎么可能包含pip包呢?
见./configure --help
:
./configure --enable-shared --with-ensurepip=upgrade
我需要从源安装 python2.7.14,我想在安装中包含 pip,我该如何完成?我认为这将通过配置脚本中的 --with-PACKAGE 开关来完成。我试过了:
./configure --enable-shared --with-pip=yes
./configure --enable-shared --with-pip-9.0.1=yes
./configure --enable-shared --with-pip-9.0.1-py2=yes
每次当我 运行 上述任一命令时得到 unrecognized option warning
。那么怎么可能包含pip包呢?
见./configure --help
:
./configure --enable-shared --with-ensurepip=upgrade