【问题标题】:Pip install not installing python modulePip install 没有安装 python 模块
【发布时间】:2014-10-30 04:02:40
【问题描述】:

我最近重新格式化了我的计算机,并且一直在尝试重新安装 Python 和 Pip 以及我用于编程的模块。但是,当我尝试在 powershell 中使用 pip 安装模块时,例如“pip install BeautifulSoup”,它会显示

PS C:\Users\Norman\Copy\Coding\LinguisticsProject> pip install BeautifulSoup
Downloading/unpacking pip
Downloading/unpacking setuptools
Downloading/unpacking install
  Could not find any downloads that satisfy the requirement install
  Some externally hosted files were ignored (use --allow-external install to allow).
Cleaning up...
No distributions at all found for install
Storing debug log for failure in C:\Users\Norman\pip\pip.log

日志文件位于http://pastebin.com/Th7uuKA4。该模块未正确安装,因为当我尝试导入该模块时未找到该模块。我将我的用户 PATH 变量设置为以下内容:http://pastebin.com/htquhuVY。谢谢!

【问题讨论】:

  • 你的意思是pip install BeautifulSoup4
  • 我也试过了,还是不行。

标签: python powershell beautifulsoup pip


【解决方案1】:

我相信您正在寻找的包裹是BeautifulSoup4。我也失败了。我感觉到你的痛苦。

【讨论】:

  • 我试过了,还是不行。我认为这与我的 pip 安装有关,而不是错误的名称。