简体   繁体   中英

Problem installing flask in a python virtual environment

I created a virtual python environment with python -m venv virtual , and then i tried to install flask with virtual\Scripts\pip install flask . But then i got this error:

virtual\Scripts\pip : The module 'virtual' could not be loaded. For more information, run 'Import-Module virtual'.
At line:1 char:1
+ virtual\Scripts\pip install flask
+ ~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (virtual\Scripts\pip:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CouldNotAutoLoadModule

And when i tried Import-Module virtual i got:

Import-Module : The specified module 'virtual' was not loaded because no valid module file was found in any module directory.
At line:1 char:1
+ Import-Module virtual
+ ~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ResourceUnavailable: (virtual:String) [Import-Module], FileNotFoundException
    + FullyQualifiedErrorId : Modules_ModuleNotFound,Microsoft.PowerShell.Commands.ImportModuleCommand

What should i do?

I just changed the path of the virtual environment and it works well

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM