本人使用的是python3,直接上代码
#coding=utf-8
import os
def getAllModule():
moduleList = os.popen("pip list").read()
print(moduleList.split('\n'))
if __name__ == "__main__":
getAllModule()
结果如下图
本人使用的是python3,直接上代码
#coding=utf-8
import os
def getAllModule():
moduleList = os.popen("pip list").read()
print(moduleList.split('\n'))
if __name__ == "__main__":
getAllModule()
结果如下图