pull/165/merge
a lemon tree 2024-09-26 00:15:00 +08:00 committed by GitHub
commit a3d85b73d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

View File

@ -128,3 +128,4 @@ rmvirtualenv [虚拟环境名称]
```
deactivate
```

13
Article/pip操作/pip.md Normal file
View File

@ -0,0 +1,13 @@
## python查看包的依赖关系
1.先手动安装:
```shell
pip install pipdeptree
```
2使用pipdeptree来查看库包的依赖
```shell
pipdeptree -p xxxx包名
```