pip list
সমস্ত প্যাকেজ দেখায় ।
pip freeze
আপনি প্রয়োজনীয় ফরম্যাটে আপনার pip
(অথবা pipenv
সেই সরঞ্জামটি ব্যবহার করে) কমান্ডের মাধ্যমে ইনস্টল করা প্যাকেজগুলি দেখায় ।
যে নীচে মন্তব্য setuptools , পিপ , চাকা ইনস্টল করা যখন 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>
এখন পর্যালোচনা & নিজ নিজ কমান্ড যেখানে আমি শুধু ইনস্টল আউটপুট তুলনা শীতল-liberal এর সংক্ষিপ্ত রূপ এবং 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