diff --git a/guide/english/python/using-pip/index.md b/guide/english/python/using-pip/index.md index 3a68b43f62..a0f0e29992 100644 --- a/guide/english/python/using-pip/index.md +++ b/guide/english/python/using-pip/index.md @@ -22,10 +22,13 @@ Installing it would be as simple as `pip install requests` . You can even pass v pip install --upgrade For example, to upgrade the requests module to its latest version would be as simple as `pip install requests --upgrade`. +To update pip itself, you can use `pip install --upgrade pip` + +To find other useful commands for pip, use `pip help`. This will give you a list of useful commands and arguments you can use, such as `uninstall`, `list` or `search`. Before using `pip`, you will need to install it (it's quite simple). You can install it from here -Just click on the link. And save the file as`get-pip.py` _Please don't forget the `.py` extension._ And run it. +Just click on the link. And save the file as `get-pip.py` _Please don't forget the `.py` extension._ And run it. An alternative to using pip would be to try `easy_install`.