How can I get a list of locally installed Python modules?

前端 未结 30 2678
庸人自扰
庸人自扰 2020-11-22 04:32

I would like to get a list of Python modules, which are in my Python installation (UNIX server).

How can you get a list of Python modules installed in your computer?

30条回答
  •  眼角桃花
    2020-11-22 04:50

    I normally use pip list to get a list of packages (with version).

    This works in a virtual environment too, of course. To show what's installed in only the virtual environment (not global packages), use pip list --local.

    Here's documentation showing all the available pip list options, with several good examples.

提交回复
热议问题