我在笔记本电脑上安装了烧瓶。但它似乎仅在python3上运行。如何使其适用于python2?

时间:2018-11-11 09:48:45

标签: python python-3.x flask

我的系统将python3作为python命令的默认值。 当我尝试在python命令行上导入flask时,出现以下提示:

Python 2.7.15rc1 (default, Apr 15 2018, 21:51:34) 
[GCC 7.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import flask
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named flask
>>> 

但是在python3中我得到了:

Python 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56) 
[GCC 7.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import flask
>>> 

我该如何纠正?

1 个答案:

答案 0 :(得分:1)

您似乎正在使用两种不同的包装系统:pip和conda。对于Python2,请尝试pip2 install flask