According to the last example in the "Aliased Imports" section in [standard_library_imports.rst](https://github.com/PythonCharmers/python-future/blob/6b8341c0412ddf8081151692e9034986a6f867bc/docs/standard_library_imports.rst#aliased-imports) and for [0.15.2](http://python-future.org/imports.html#aliased-imports), this should work: ``` python Python 2.7.11 |Anaconda 2.3.0 (x86_64)| (default, Dec 6 2015, 18:57:58) [GCC 4.2.1 (Apple Inc. build 5577)] on darwin Type "help", "copyright", "credits" or "license" for more information. Anaconda is brought to you by Continuum Analytics. Please check out: http://continuum.io/thanks and https://anaconda.org >>> from future.standard_library import install_aliases >>> install_aliases() >>> from collections import ChainMap Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: cannot import name ChainMap >>> import future >>> future.__version__ '0.15.2' ```