How to find out the installed (Python) libraries in Visual Studio Code

12,610

You can list your installed libraries using pip.

pip list will give you the list of all installed libraries for its python installation.

NB: Just make sure you are using the pip.exe from the good install of python, in your case the 3.7 you mentionned

Share:
12,610
Sina
Author by

Sina

I am an enterprising software-developer, who has been living, studying and working in numerous countries. I love chasing and embracing the life, meeting new people, making new friends, exchanging culturally and doing sports. I'm not much of a book person, yet when I dive into the ocean of English words and grammar, I simply drown to depth and enjoy magical words, etymology and professional structures. Right now I'm working and doing a master in south of Germany, and learn French, which in two years I'll have mastered and joined the six-language-speaking club literally.

Updated on June 04, 2022

Comments

  • Sina
    Sina almost 2 years

    I have been coding Python 3.7 using Visual Studio Code on Windows 10. Recently, I have taken over a new project, which calls for some newer and different libraries. Hence, for whatever reason, I decided not to customise my libraries, but to install Anaconda, and install the corresponding libraries into it.

    However, since I cannot remember all the libraries I have already installed in Visual Studio Code (e.g. numPy, matplotlib, etc.), I'd like to ask if there is any way to get a list of the libraries I added on to my Python installation.

    I appreciate your comments in advance!

    Cheers,

    Sina

    • olinox14
      olinox14 over 5 years
      I assume you are talking about python libraries, and not about about Visual Studio Code plugins?
    • Sina
      Sina over 5 years
      I didn't meantion plugins dude! Just libraries! Yes, Python libraries.
  • Sina
    Sina over 5 years
    The question is not about Conda. Please read the question more carefully.
  • Admin
    Admin over 2 years
    Your answer could be improved with additional supporting information. Please edit to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers in the help center.