Answer the question
In order to leave comments, you need to log in
How to get list of python3 modules via script?
I searched on the Internet - even did not find it.
To clarify, I don't need a list of standard modules.
Answer the question
In order to leave comments, you need to log in
from pip._internal.operations import freeze
x = freeze.freeze()
for p in x:
print(p)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question