Import-Module virtualenvwrapper

时间:2015-06-28 05:43:42

标签: python powershell virtualenvwrapper

我正在使用powershell。 我成功安装了virtualenvwrapper-powershell。

但是当我输入' Import-Module virtualenvwrapper'时,我收到如下错误:

  
    

PS C:\ Python27> Import-Module virtualenvwrapper Import-Module:The     指定模块&virtualenvwrapper'没有加载因为无效     模块文件在任何模块目录中找到。在行:1 char:1

         

Import-Module virtualenvwrapper ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     CategoryInfo:ResourceUnavailable:(virtualenvwrapper:String)     [Import-Module],FileNotFoundException FullyQualifiedErrorId:     Modules_ModuleNotFound,Microsoft.PowerShell.Commands.ImportModuleCommand

  

如果你能给我一些建议,那就太好了......

2 个答案:

答案 0 :(得分:1)

您需要将VirtualEnvWrapper文件夹粘贴到以下目录中。它对我有用

**

  

`   C:\ Windows \ System32下\ WindowsPowerShell \ V1.0 \模块

`

**

答案 1 :(得分:0)

您需要将模块存储在与模块同名的文件夹中,或者需要将.psm1与import命令一起使用。对于您的情况,您需要将模块存储在以下路径

C:/Python27/virtualenvwrapper/virtualenvwrapper.psm1

因此您可以使用此命令

Import-Module virtualenvwrapper

或使用此命令调用您的模块

Import-Module virtualenvwrapper.psm1

如果这些都不起作用,那么您可能会发现此链接很有用 installing virtualenvwrapper