Skip to content

Instantly share code, notes, and snippets.

@di
Created October 27, 2018 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save di/0d0b67154ae0ced82c50132de425116b to your computer and use it in GitHub Desktop.
Save di/0d0b67154ae0ced82c50132de425116b to your computer and use it in GitHub Desktop.
(env) /tmp $ python --version
Python 2.7.14
(env) /tmp $ python -c "import html"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named html
(env) /tmp $ pip install future
Collecting future
Installing collected packages: future
Successfully installed future-0.17.0
(env) /tmp $ python -c "import html"
(env) /tmp $
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment