plugins - Python - How to check if requests installed correctly -
so i'm using import requests
in 1 of python scripts keep getting large error looks .get()
method i'm using out of requests isn't there, or wasn't installed correctly, when try pip
menu isnt doing correctly. followed directions https://pip.pypa.io/en/stable/installing.html here, python get-pip.py
won't work? feel missing simple.. advice? know have python installed correctly because whereis python
comes correctly location.
cambria@vayne:~$ pip traceback (most recent call last): file "/usr/bin/pip", line 9, in <module> load_entry_point('pip==1.5.6', 'console_scripts', 'pip')() file "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 521, in load_entry_point return get_distribution(dist).load_entry_point(group, name) file "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2632, in load_entry_point return ep.load() file "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2312, in load return self.resolve() file "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2318, in resolve module = __import__(self.module_name, fromlist=['__name__'], level=0) file "/usr/lib/python2.7/dist-packages/pip/__init__.py", line 74, in <module> pip.vcs import git, mercurial, subversion, bazaar # noqa file "/usr/lib/python2.7/dist-packages/pip/vcs/mercurial.py", line 9, in <module> pip.download import path_to_url file "/usr/lib/python2.7/dist-packages/pip/download.py", line 25, in <module> requests.compat import incompleteread importerror: cannot import name incompleteread
any light on help, have been trying fix couple days im not sure isn't installed correctly or i'm missing
thank much! sorry if i'm not clear enough english second language
Comments
Post a Comment