1.我今天在使用pip查看我安装的第三方扩展包的时候,发现pip freeze 和 pip list显示的扩展包不一样,pip freeze 显示出的包要少几个,然而pip freeze --all 和 pip list 显示的是一样的,请问这三个有什么区别?
2.
3.freeze显示的只有17个,而pip list 和 pip freeze --all显示了20个,
freeze 显示 少了 pip , wheel, setuptools.
4.国外的http://stackoverflow.com/ques...有pip freeze 和 pip list 的解释,可是我还是不懂这三个的区别?
In this case, please read the parameter description first
pip help freeze, I’ll tell you directly
--all parameter is "Do not skip these packages in the output: pip, setuptools, distribute, wheel"
(In virtualenv, these packages must exist, but generally speaking, your code will not call these packages directly)