From d439d9f385282e2e421e137ba6dd8ed151afdd89 Mon Sep 17 00:00:00 2001 From: John Close Date: Thu, 23 May 2019 23:06:50 -0400 Subject: [PATCH] Update index.md (#30805) --- guide/english/python/using-pip/index.md | 7 +++++++ 1 file changed, 7 insertions(+) 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.