我的系统将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
>>>
我该如何纠正?
答案 0 :(得分:1)
您似乎正在使用两种不同的包装系统:pip和conda。对于Python2,请尝试pip2 install flask
。