pip仅收集软件包(matplotlib),不安装

时间:2018-09-18 11:49:52

标签: python matplotlib pip anaconda

我正在尝试按照this教程在系统上设置对象检测tensorflow api。所有步骤均有效,但matplotlib安装无效。 Pip仅收集matplotlib而不安装它。但是,如果我安装其他软件包(如Pandas),则说明安装正确。

Command prompt image can be seen here

1 个答案:

答案 0 :(得分:0)

我找到了适用于我的Windows 7 64位(Python 3.7)解决方案:

  1. 在Windows中打开cmd(控制台)。如果您使用的是Windows 10,请使用powershell,然后在powershell中输入cmd
  2. 使用cd浏览到虚拟环境的“ Scripts”文件夹。在您的示例中,该名称应为“ c:\ tensorflow1 \ models \ research \ Scripts”
  3. 通过键入python并按Enter键,验证您正在此文件夹(因此也就是该虚拟环境)中调用python.exe。尝试导入matplotlib。由于尚未安装该软件包,因此不会起作用。
  4. 不要激活环境。
  5. 使用python -m pip install matplotlib安装软件包。