pip freeze does not show all installed packages

后端 未结 5 1729
礼貌的吻别
礼貌的吻别 2020-12-17 19:13

I am using a virtualenv. I have fabric installed, with pip. But a pip freeze does not give any hint about that. The packa

5条回答
  •  天命终不由人
    2020-12-17 19:21

    Although your problem was specifically due to a typo, to help other users:

    pip freeze doesn't show the dependencies that pip depends on. If you want to obtain all packages you can use pip freeze --all or pip list.

提交回复
热议问题