Issue
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
Solution
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
Answered By - olinox14
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.