Advertisement
lamiastella

twisted.internet

Mar 1st, 2017
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. mona@pascal:~/computer_vision/instagram$ sudo pip install twisted
  2. The directory '/home/mona/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
  3. The directory '/home/mona/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
  4. Collecting twisted
  5. Collecting constantly>=15.1 (from twisted)
  6. Downloading constantly-15.1.0-py2.py3-none-any.whl
  7. Collecting Automat>=0.3.0 (from twisted)
  8. Downloading Automat-0.5.0-py2.py3-none-any.whl
  9. Collecting incremental>=16.10.1 (from twisted)
  10. Downloading incremental-16.10.1-py2.py3-none-any.whl
  11. Collecting zope.interface>=4.0.2 (from twisted)
  12. Collecting attrs (from Automat>=0.3.0->twisted)
  13. Downloading attrs-16.3.0-py2.py3-none-any.whl
  14. Requirement already satisfied: six in /usr/local/lib/python3.4/dist-packages (from Automat>=0.3.0->twisted)
  15. Requirement already satisfied: setuptools in /usr/local/lib/python3.4/dist-packages (from zope.interface>=4.0.2->twisted)
  16. Installing collected packages: constantly, attrs, Automat, incremental, zope.interface, twisted
  17. Successfully installed Automat-0.5.0 attrs-16.3.0 constantly-15.1.0 incremental-16.10.1 twisted-17.1.0 zope.interface-4.3.3
  18. mona@pascal:~/computer_vision/instagram$ scrapy startproject instagram
  19. Traceback (most recent call last):
  20. File "/usr/bin/scrapy", line 3, in <module>
  21. from scrapy.cmdline import execute
  22. File "/usr/lib/python2.7/dist-packages/scrapy/cmdline.py", line 10, in <module>
  23. from scrapy.crawler import CrawlerProcess
  24. File "/usr/lib/python2.7/dist-packages/scrapy/crawler.py", line 3, in <module>
  25. from twisted.internet import reactor, defer
  26. ImportError: No module named twisted.internet
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement