Update a Python Package | Delft Stack
www.delftstack.com › python › python-update-packageMay 28, 2021 · Use pip to Update a Python Package. To update python packages through the command line of the computer, run the following commands. pip install --upgrade [package name]==[package version or latest package version] There might be some cases where the user might have to use pip3 instead of pip. One more way of updating a Python package in Linux is through the following command. sudo pip install [package_name] --upgrade