diff --git a/Article/advanced/使用Python虚拟环境.md b/Article/advanced/使用Python虚拟环境.md index c7eddae..d699f76 100644 --- a/Article/advanced/使用Python虚拟环境.md +++ b/Article/advanced/使用Python虚拟环境.md @@ -128,3 +128,4 @@ rmvirtualenv [虚拟环境名称] ``` deactivate ``` + diff --git a/Article/pip操作/pip.md b/Article/pip操作/pip.md new file mode 100644 index 0000000..1b97b79 --- /dev/null +++ b/Article/pip操作/pip.md @@ -0,0 +1,13 @@ + +## python查看包的依赖关系 + +1.先手动安装: + +```shell +pip install pipdeptree +``` + +2,使用pipdeptree来查看库包的依赖 +```shell +pipdeptree -p xxxx包名 +``` \ No newline at end of file