编程语言
首页 > 编程语言> > python – 尝试安装feedparser时’egg_base’选项出错

python – 尝试安装feedparser时’egg_base’选项出错

作者:互联网

我想安装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”).

解决方法:

使用pip安装feedparser:

pip install feedparser

pip是一个用于安装和管理Python包的软件工具.它具有一个命令行界面,允许您通过发出单个命令来安装Python包. How to install pip on Windows.

标签:python,installation,feedparser
来源: https://codeday.me/bug/20190901/1786196.html