Created
October 27, 2018 17:29
-
-
Save di/0d0b67154ae0ced82c50132de425116b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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