ezgo 0.0.2__tar.gz → 0.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ezgo-0.0.2/src/ezgo.egg-info → ezgo-0.0.3}/PKG-INFO +12 -5
- {ezgo-0.0.2 → ezgo-0.0.3}/README.md +11 -4
- {ezgo-0.0.2 → ezgo-0.0.3}/pyproject.toml +1 -1
- {ezgo-0.0.2 → ezgo-0.0.3/src/ezgo.egg-info}/PKG-INFO +12 -5
- {ezgo-0.0.2 → ezgo-0.0.3}/LICENSE +0 -0
- {ezgo-0.0.2 → ezgo-0.0.3}/setup.cfg +0 -0
- {ezgo-0.0.2 → ezgo-0.0.3}/src/ezgo.egg-info/SOURCES.txt +0 -0
- {ezgo-0.0.2 → ezgo-0.0.3}/src/ezgo.egg-info/dependency_links.txt +0 -0
- {ezgo-0.0.2 → ezgo-0.0.3}/src/ezgo.egg-info/requires.txt +0 -0
- {ezgo-0.0.2 → ezgo-0.0.3}/src/ezgo.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ezgo
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: 宇树Go2机器狗Python控制库
|
|
5
5
|
Author-email: ezgo <noreply@example.com>
|
|
6
6
|
License: MIT
|
|
@@ -52,21 +52,28 @@ Requires-Dist: Pillow>=8.0.0; extra == "basic"
|
|
|
52
52
|
|
|
53
53
|
## 安装
|
|
54
54
|
|
|
55
|
-
###
|
|
55
|
+
### 基础安装(仅核心库,无强制依赖)
|
|
56
56
|
```bash
|
|
57
57
|
pip install ezgo
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
-
###
|
|
60
|
+
### 完整功能安装(包含所有可选依赖)
|
|
61
61
|
```bash
|
|
62
62
|
pip install ezgo[full]
|
|
63
|
-
```
|
|
63
|
+
n```
|
|
64
64
|
|
|
65
|
-
###
|
|
65
|
+
### 仅基础功能(图像处理相关依赖)
|
|
66
66
|
```bash
|
|
67
67
|
pip install ezgo[basic]
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
+
> **注意**: `ezgo` 核心库本身没有任何强制依赖。所有依赖都是可选的,您可以根据需要手动安装:
|
|
71
|
+
> - `unitree-sdk2py`: 机器人通信必需
|
|
72
|
+
> - `opencv-python`: 摄像头功能必需
|
|
73
|
+
> - `numpy`: 数值计算支持
|
|
74
|
+
> - `Pillow`: 图像处理支持
|
|
75
|
+
> - `netifaces`: �络接口检测
|
|
76
|
+
|
|
70
77
|
## 快速开始
|
|
71
78
|
|
|
72
79
|
### 基本运动控制
|
|
@@ -17,21 +17,28 @@
|
|
|
17
17
|
|
|
18
18
|
## 安装
|
|
19
19
|
|
|
20
|
-
###
|
|
20
|
+
### 基础安装(仅核心库,无强制依赖)
|
|
21
21
|
```bash
|
|
22
22
|
pip install ezgo
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
###
|
|
25
|
+
### 完整功能安装(包含所有可选依赖)
|
|
26
26
|
```bash
|
|
27
27
|
pip install ezgo[full]
|
|
28
|
-
```
|
|
28
|
+
n```
|
|
29
29
|
|
|
30
|
-
###
|
|
30
|
+
### 仅基础功能(图像处理相关依赖)
|
|
31
31
|
```bash
|
|
32
32
|
pip install ezgo[basic]
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
+
> **注意**: `ezgo` 核心库本身没有任何强制依赖。所有依赖都是可选的,您可以根据需要手动安装:
|
|
36
|
+
> - `unitree-sdk2py`: 机器人通信必需
|
|
37
|
+
> - `opencv-python`: 摄像头功能必需
|
|
38
|
+
> - `numpy`: 数值计算支持
|
|
39
|
+
> - `Pillow`: 图像处理支持
|
|
40
|
+
> - `netifaces`: �络接口检测
|
|
41
|
+
|
|
35
42
|
## 快速开始
|
|
36
43
|
|
|
37
44
|
### 基本运动控制
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ezgo
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: 宇树Go2机器狗Python控制库
|
|
5
5
|
Author-email: ezgo <noreply@example.com>
|
|
6
6
|
License: MIT
|
|
@@ -52,21 +52,28 @@ Requires-Dist: Pillow>=8.0.0; extra == "basic"
|
|
|
52
52
|
|
|
53
53
|
## 安装
|
|
54
54
|
|
|
55
|
-
###
|
|
55
|
+
### 基础安装(仅核心库,无强制依赖)
|
|
56
56
|
```bash
|
|
57
57
|
pip install ezgo
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
-
###
|
|
60
|
+
### 完整功能安装(包含所有可选依赖)
|
|
61
61
|
```bash
|
|
62
62
|
pip install ezgo[full]
|
|
63
|
-
```
|
|
63
|
+
n```
|
|
64
64
|
|
|
65
|
-
###
|
|
65
|
+
### 仅基础功能(图像处理相关依赖)
|
|
66
66
|
```bash
|
|
67
67
|
pip install ezgo[basic]
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
+
> **注意**: `ezgo` 核心库本身没有任何强制依赖。所有依赖都是可选的,您可以根据需要手动安装:
|
|
71
|
+
> - `unitree-sdk2py`: 机器人通信必需
|
|
72
|
+
> - `opencv-python`: 摄像头功能必需
|
|
73
|
+
> - `numpy`: 数值计算支持
|
|
74
|
+
> - `Pillow`: 图像处理支持
|
|
75
|
+
> - `netifaces`: �络接口检测
|
|
76
|
+
|
|
70
77
|
## 快速开始
|
|
71
78
|
|
|
72
79
|
### 基本运动控制
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|