踩坑记:使用 pip3 install 命令安装 第三方模块时报Command "python setup.py egg_info" failed with error code 1 in /p...

1.问题:

使用 pip3 install 命令安装 第三方模块时报错。

pip3 install htop

报错内容:

Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/nw/0lc60c214hj4rcyjm_c4fywh0000gn/T/pip-install-l2dc7wdb/htop/

2.原因:

pip 安装源中没有 python 3 对应的模块源码。

3.解决:

在 GitHub 中找到对应的源码,下载后手动安装配置。

你可能感兴趣的:(踩坑记:使用 pip3 install 命令安装 第三方模块时报Command "python setup.py egg_info" failed with error code 1 in /p...)