标签: python python-2.7 anaconda
我无法在Anaconda中import _future_。我使用的是Python 2.7:
import _future_
Error: from _future_ import absolute_import, division, print_function ImportError: No module named _future_
答案 0 :(得分:3)
您输入的包不正确。它是__future__而非_future_(它使用了两个下划线)。
__future__
_future_
如果你看docs它就写在第一行。