pip list
모든 패키지를 표시 합니다.
pip freeze
쇼 패키지는 당신이 를 통해 설치 pip
(또는 pipenv
그 도구를 사용하는 경우) 요구 사항 형식으로 명령을.
내 가상 엔벨로프를 생성 할 때 setuptools , pip , wheel 이 설치 된다는 점에 유의하십시오 pipenv shell
. 이 패키지는 다음을 사용하여 설치 되지 않았습니다 pip
.
test1 % pipenv shell
Creating a virtualenv for this project…
Pipfile: /Users/terrence/Development/Python/Projects/test1/Pipfile
Using /usr/local/Cellar/pipenv/2018.11.26_3/libexec/bin/python3.8 (3.8.1) to create virtualenv…
⠹ Creating virtual environment...
<SNIP>
Installing setuptools, pip, wheel...
done.
✔ Successfully created virtual environment!
<SNIP>
이제 cool-lib 및 sampleproject ( 페퍼콘 이 종속성 임) 만 설치 한 각 명령의 출력을 검토하고 비교합니다 .
test1 % pip freeze <== Packages I'VE installed w/ pip
-e git+https://github.com/gdamjan/hello-world-python-package.git@10<snip>71#egg=cool_lib
peppercorn==0.6
sampleproject==1.3.1
test1 % pip list <== All packages, incl. ones I've NOT installed w/ pip
Package Version Location
------------- ------- --------------------------------------------------------------------------
cool-lib 0.1 /Users/terrence/.local/share/virtualenvs/test1-y2Zgz1D2/src/cool-lib <== Installed w/ `pip` command
peppercorn 0.6 <== Dependency of "sampleproject"
pip 20.0.2
sampleproject 1.3.1 <== Installed w/ `pip` command
setuptools 45.1.0
wheel 0.34.2