在 Windows 上安装 Python 包:Pip 与 EasyInstall
问题:
努力由于 Python 2.6 的 EasyInstall 可执行文件不可用,因此在 Windows 上设置 Python 包。
首选解决方案:
Pip 现在是安装 Python 包的推荐方法,因为它已成为事实上的标准,并且比 EasyInstall 具有多种优势。
在 Windows 上安装 Pip 的步骤:
<code class="bash">curl https://bootstrap.pypa.io/ez_setup.py | python</code>
<code class="bash">curl https://bootstrap.pypa.io/get-pip.py | python</code>
使用 Pip 安装 Mechanize:
安装 Pip 后,安装 Mechanize 或任何其他软件包都很简单:
<code class="bash">pip install mechanize</code>
Pip 的优点:
通过使用Pip 作为您首选的软件包安装方法,您可以无缝管理您的 Python 软件包,并避免与过时或不可用的可执行文件相关的挫败感。
以上是如何在 Windows 上轻松安装 Python 包:Pip 与 EasyInstall的详细内容。更多信息请关注PHP中文网其他相关文章!