diff --git a/guide/english/python/using-pip/index.md b/guide/english/python/using-pip/index.md index a0f0e29992..d8e2d31e2c 100644 --- a/guide/english/python/using-pip/index.md +++ b/guide/english/python/using-pip/index.md @@ -66,4 +66,11 @@ For example, we could create the file `requirements.txt` and its content: pip install -r requirements.txt Should install all the modules listed on the file. + + If you need to know which packages you have installed (along with their versions) you + can use the list command: + + pip list + + This will come in handy when installing packages with prerequisites such as torch or tensorflow.