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
conda
installation, check versionconda info
-
Update
conda
conda update conda
-
Update
requests
packageconda update requests
-
Update all packages
conda update --all