Skip to content

Commit 3f5b42e

Browse files
committed
feat(python): add download package
1 parent fe6f223 commit 3f5b42e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Python/env.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ python -m ensurepip --upgrade
1919
python -m pip install --upgrade pip
2020
```
2121

22-
23-
24-
2522
##### 创建虚拟环境
2623
```bash
2724
python3 -m venv ${path}
@@ -53,6 +50,11 @@ pip install package==
5350
pip download -d ${path} -r requirement.txt
5451
```
5552

53+
##### 下载包及所有依赖(仅wheel文件)
54+
```
55+
pip download ${xxx} --only-binary=:all: -d ./
56+
```
57+
5658
##### 获取操作系统环境
5759
```python
5860
# 三种方式

0 commit comments

Comments
 (0)