diff --git "a/Article/advanced/\344\275\277\347\224\250Python\350\231\232\346\213\237\347\216\257\345\242\203.md" "b/Article/advanced/\344\275\277\347\224\250Python\350\231\232\346\213\237\347\216\257\345\242\203.md" index c7eddae1..d699f760 100644 --- "a/Article/advanced/\344\275\277\347\224\250Python\350\231\232\346\213\237\347\216\257\345\242\203.md" +++ "b/Article/advanced/\344\275\277\347\224\250Python\350\231\232\346\213\237\347\216\257\345\242\203.md" @@ -128,3 +128,4 @@ rmvirtualenv [虚拟环境名称] ``` deactivate ``` + diff --git "a/Article/pip\346\223\215\344\275\234/pip.md" "b/Article/pip\346\223\215\344\275\234/pip.md" new file mode 100644 index 00000000..1b97b79e --- /dev/null +++ "b/Article/pip\346\223\215\344\275\234/pip.md" @@ -0,0 +1,13 @@ + +## python查看包的依赖关系 + +1.先手动安装: + +```shell +pip install pipdeptree +``` + +2,使用pipdeptree来查看库包的依赖 +```shell +pipdeptree -p xxxx包名 +``` \ No newline at end of file