Skip to content

Instantly share code, notes, and snippets.

@notmyname
Created April 7, 2014 19:47
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 notmyname/679a08aa0515d0c15527 to your computer and use it in GitHub Desktop.
Save notmyname/679a08aa0515d0c15527 to your computer and use it in GitHub Desktop.
swift@saio:~$ python
Python 2.7.3 (default, Feb 27 2014, 19:58:35)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import concurrent
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named concurrent
>>> import concurrent.futures
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named concurrent.futures
>>>
swift@saio:~$ sudo pip install futures
Downloading/unpacking futures
Downloading futures-2.1.6-py2.py3-none-any.whl
Installing collected packages: futures
Successfully installed futures
Cleaning up...
swift@saio:~$
swift@saio:~$
swift@saio:~$ python
Python 2.7.3 (default, Feb 27 2014, 19:58:35)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import concurrent.futures
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment