不确定如何修复此Cmd命令错误?

时间:2016-03-10 14:53:30

标签: python windows cmd command pip

我在Windows 8上安装了最新的python,我将使用sublime text 3作为我的ide使用flask创建一个网站。但首先我需要使用此命令pip install virtualenv安装虚拟环境,并且这是我用cmd收到的回复。

// Takes the list as a parameter, can use pimp-my-library if you want
def groupWith[A](xs: List[A], f: (A, A) => Boolean) = {
  // helper function to add "e" to any list with a member that matches the predicate
  // otherwise add it to a list of its own
  def addtoGroup(gs: List[List[A]], e: A): List[List[A]] = {
    val (before, after) = gs.span(_.exists(!f(_, e)))
    if (after.isEmpty)
      List(e) :: gs
    else
      before ::: (e :: after.head) :: after.tail
  }
  // now a simple foldLeft adding each element to the appropriate list
  xs.foldLeft(Nil: List[List[A]])(addtoGroup)
} 

groupWith(list, { (e: Item, c: Item) =>
                    (e.num - 1 == c.num || e.num + 1 == c.num) && e.color == c.color})

//| res0: List[List[groups.groups.Item]] =
//         List(List(Item(16,red)),
//              List(Item(15 ,blue)), 
//              List(Item(14,red), Item(13,red)))

如果你知道如何解决这个问题,请有人帮忙,因为我不能确定从这里做什么感谢。

1 个答案:

答案 0 :(得分:2)

在Windows下,pip存储在Python脚本文件夹中,例如" C:\Python27\Scripts"

如何投放pip

  • [WIN]+R并输入cmd.exe打开命令行。

  • 然后在命令行中键入cd "C:\Python27\Scripts"(或者您已安装Python的其他位置),浏览Python安装的Scrips文件夹。

  • 要运行pip,请在命令行中输入pip.exe。这应该打印一条帮助信息。

  • 如果是这样,您可以使用pip install package_name安装Python包。

我的建议:

每次导航到Scripts文件夹都非常烦人,因此您可以告诉Windows pip.exe存储在哪里。

  • 打开控制面板,搜索"环境变量"并选择编辑环境变量。

  • 当打开一个小窗口时,按下按钮"环境变量"在底部。

  • 现在,双击条目"路径",点击"新"并输入" C:\Python27\Scripts" (如果这是您的安装路径,请参见上文)。单击&#34关闭所有窗口;确定",您已完成!

  • 现在打开一个命令行并通过pip进行安装应该可以。

希望这有帮助!