How do I find out what Python libraries are installed on my Mac?

后端 未结 7 2853
后悔当初
后悔当初 2021-02-19 20:25

I\'m just starting out with Python, and have found out that I can import various libraries. How do I find out what libraries exist on my Mac that I can import? How do I find out

7条回答
  •  悲&欢浪女
    2021-02-19 20:53

    just run the Python interpeter and type the command import "lib_name" if it gives an error, you don't have the lib installed...else you are good to go

提交回复
热议问题