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).

  1. Verify conda installation, check version

    conda info
    
  2. Update conda

    conda update conda
    
  3. Update requests package

    conda update requests
    
  4. Update all packages

    conda update --all