3

我想安装feedparser

这就是尝试在 Windows 命令行中安装 feedparser 时发生的情况。

> python.exe setup.py install
running install
running bdist_egg
error: error in 'egg_base' option: 'feedparser does not exist or is not a directory

我正在使用 Python 2.7(feedparser 站点声明“它在 Python 2.4 上一直运行到 3.2”)。

4

1 回答 1

5

使用pip安装 feedparser :

pip install feedparser

pip 是一个用于安装和管理 Python 包的软件工具。它具有命令行界面,可让您通过发出单个命令来安装 Python 包。如何在 Windows 上安装 pip

于 2012-08-29T11:17:58.510 回答