增加详细的使用文档,并多图结合描述
This commit is contained in:
parent
1da5e62004
commit
b7da5d9373
|
@ -377,3 +377,10 @@ PS D:\api-test-project> python .\main_personal_information.py
|
|||
| 陈锦 | 女 | 29 | 1993-02-12 | 452123199302128568 | 62260020819291645 | 0915-7410180 | 17509030433 | chenjin@icloud.com | 重庆市西安市沙湾广州街G座 531384 | 92445302298701343Q |
|
||||
+--------+------+------+------------+--------------------+----------------------+--------------+-------------+-------------------------+----------------------------------------+--------------------+
|
||||
```
|
||||
|
||||
## 赞赏
|
||||
如果这个库有帮助到你并且你很想支持库的后续开发和维护,那么你可以扫描下方二维码随意打赏我,我将不胜感激
|
||||

|
||||
|
||||
|
||||
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 162 KiB |
|
@ -0,0 +1,12 @@
|
|||
pipenv --where 列出本地工程路径
|
||||
pipenv --venv 列出虚拟环境路径
|
||||
pipenv --py 列出虚拟环境的Python可执行文件
|
||||
pipenv install 创建虚拟环境
|
||||
pipenv isntall [moduel] 安装包
|
||||
pipenv install [moduel] --dev 安装包到开发环境
|
||||
pipenv uninstall[module] 卸载包
|
||||
pipenv uninstall --all 卸载所有包
|
||||
pipenv graph 查看包依赖
|
||||
pipenv lock 生成lockfile
|
||||
pipenv run python [pyfile] 运行py文件
|
||||
pipenv --rm 删除虚拟环境
|
Loading…
Reference in New Issue