我想安装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
我使用的是Python2.7 (feedparser站点声明“它在Python2.4上一直运行到3.2")。
发布于 2012-08-29 11:17:59
使用pip安装feedparser
pip install feedparser
pip是用于安装和管理Python包的软件工具。它提供了一个命令行界面,允许您通过发出一个命令来安装Python包。How to install pip on Windows。
https://stackoverflow.com/questions/12168790
复制相似问题