Python 2.7 Import Dropbox Sdk Error
After installing the 'dropbox SDK' on my RaspberryPi pi@raspberrypi:~ $ sudo pip install dropbox Downloading/unpacking dropbox Downloading dropbox-7.3.1-py2-none-any.whl (416kB): 4
Solution 1:
You are having an issue in the requests module that is installed. First upgrade pip and then try to reinstall requests.
sudo apt-get install --only-upgrade python-pip
sudo pip uninstall requests
sudo pip install requests
Post a Comment for "Python 2.7 Import Dropbox Sdk Error"