How to fix urllib3 RuntimeError: Requests dependency 'urllib3' must be version >= 1.21.1, < 1.22?
I am a new developer and learning to code in Python 3.4.2. I am running Debian linux on a Raspberry Pi3. After the fresh install I did both sudo apt-get update and sudo apt-get upgrade to get everything up to date. I am trying to test a section of code which uploads a file to Dropbox: import dropbox import urllib3 authkey = (my dropbox dev auth key) with open('test.csv','rb') as f: dbx = dropbox.Dropbox(authkey) dbx.files_upload(f.read(), '/test.csv') Now, I have no idea if the actual Dropbox code is correct, because I am getting the following error when I run the script in the Python shell: