我一直在尝试安装和运行它,但是它不起作用。
我想首先在我的工作文件夹中创建一个虚拟环境,然后我能够在python-scripts文件夹中安装virtualenv。我在Windows中使用cmd行。
C:\Users\ADMIN\python\Scripts>pip install virtualenv
Requirement already satisfied: virtualenv in c:\users\admin\python\lib\site-packages (16.0.0)
You are using pip version 10.0.1, however version 18.0 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
C:\Users\ADMIN\python\Scripts>cd..
C:\Users\ADMIN\python>cd..
C:\Users\ADMIN>cd desktop
C:\Users\ADMIN\Desktop>cd flask_bookreview
C:\Users\ADMIN\Desktop\flask_bookreview>virtualenv flask
'virtualenv' is not recognized as an internal or external command,
operable program or batch file.
答案 0 :(得分:0)
阅读此链接以安装和激活您的虚拟环境:
http://pymote.readthedocs.io/en/latest/install/windows_virtualenv.html
成功安装并激活虚拟环境后,请运行以下命令来安装flask:-
pip安装瓶
答案 1 :(得分:0)
如果要手动安装,请尝试Manish Mahendru的答案,但是,如果您只是想要它也可以使用,请查看Anaconda(www.anaconda.com/download/)。 它包含大量有用的软件包,并且我已经使用过的每个软件包(到现在为止)都已经安装了。烧瓶也已安装。
答案 2 :(得分:0)
要创建虚拟环境,必须要做的
python -m venv flaskenv
现在像
一样激活virtualenv cd flaskenv
Scripts\activate.bat
现在安装为
(flaskenv) C:/User/ADMIN/> pip install flask