Anaconda: Update the Requests package using conda
If you have installed Anaconda the
requests package is included in the distribution.
Anaconda utilizes Conda rather than pip as its package
manager.
Run the following commands from the terminal to verify your conda install, update conda (if
necessary), and update the requests package (if necessary).
-
Verify
condainstallation, check versionconda info -
Update
condaconda update conda -
Update
requestspackageconda update requests -
Update all packages
conda update --all