How To Find Where Python Modules Stored

In this article, i will tell you 3 methods to find where a python module stores as below. Find python module in sys.path. The python sys module’s path attribute save all python module stored path. Then you can find your python module in the output path directory. >>> import sys >>> >>> sys.path [”, ‘C:\\Users\\zhaosong\\anaconda3\\envs\\python_example\\python38.zip’,

How To Find Where Python Modules Stored Read More »