Pythonista indicates in its documentation it includes some third party modules including "Dropbox for Python" and "Requests - HTTP for Humans". I've found them in "Standard Library (3.5)/site-packages". So how should I go about updating them? Installing Python Modules indicates you can use python -m pip install --upgrade SomePackage from the command line but when I try updating dropbox I get:
>>> python -m pip install --upgrade dropbox
File "<string>", line 1
python -m pip install --upgrade dropbox
^
SyntaxError: invalid syntax
When I use StaSh with the command pip update dropbox I get:
[~/Documents]$ pip update dropbox
Error: package not installed: dropbox
[~/Documents]$
So how do I go about updating them? And do I have to check all the"Standard Library (3.5)" modules before performing a pip install in case the package I'm trying to install is already available?