Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
a4163ef2
D
Docs
项目概览
OpenHarmony
/
Docs
大约 2 年 前同步成功
通知
161
Star
293
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a4163ef2
编写于
9月 17, 2021
作者:
S
stivn
提交者:
Gitee
9月 17, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update zh-cn/device-dev/subsystems/subsys-testguide-envbuild.md.
Signed-off-by:
N
stivn
<
sunteng10@huawei.com
>
上级
9c34dd3c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
56 addition
and
55 deletion
+56
-55
zh-cn/device-dev/subsystems/subsys-testguide-envbuild.md
zh-cn/device-dev/subsystems/subsys-testguide-envbuild.md
+56
-55
未找到文件。
zh-cn/device-dev/subsystems/subsys-testguide-envbuild.md
浏览文件 @
a4163ef2
...
@@ -10,67 +10,68 @@
...
@@ -10,67 +10,68 @@
## 安装流程
## 安装流程
1.
安装Linux扩展组件readline,安装命令如下:
1.
安装Linux扩展组件readline,安装命令如下:
```
```
sudo apt-get install libreadline-dev
sudo apt-get install libreadline-dev
```
```
安装成功提示如下:
安装成功提示如下:
```
```
Reading package lists... Done
Reading package lists... Done
Building dependency tree
Building dependency tree
Reading state information... Done
Reading state information... Done
libreadline-dev is already the newest version (7.0-3).
libreadline-dev is already the newest version (7.0-3).
0 upgraded, 0 newly installed, 0 to remove and 11 not upgraded.
0 upgraded, 0 newly installed, 0 to remove and 11 not upgraded.
```
```
2.
安装setuptools插件,安装命令如下:
2.
安装setuptools插件,安装命令如下:
```
```
pip3 install setuptools
pip3 install setuptools
```
```
安装成功提示如下:
安装成功提示如下:
```
```
Requirement already satisfied: setuptools in d:\programs\python37\lib\site-packages (41.2.0)
Requirement already satisfied: setuptools in d:\programs\python37\lib\site-packages (41.2.0)
```
```
3.
安装paramiko插件,安装命令如下:
3.
安装paramiko插件,安装命令如下:
```
```
pip3 install paramiko
pip3 install paramiko
```
```
安装成功提示如下:
安装成功提示如下:
```
```
Installing collected packages: pycparser, cffi, pynacl, bcrypt, cryptography, paramiko
Installing collected packages: pycparser, cffi, pynacl, bcrypt, cryptography, paramiko
Successfully installed bcrypt-3.2.0 cffi-1.14.4 cryptography-3.3.1 paramiko-2.7.2 pycparser-2.20 pynacl-1.4.0
Successfully installed bcrypt-3.2.0 cffi-1.14.4 cryptography-3.3.1 paramiko-2.7.2 pycparser-2.20 pynacl-1.4.0
```
```
4.
安装python的rsa插件,安装命令如下:
4.
安装python的rsa插件,安装命令如下:
```
```
pip3 install rsa
pip3 install rsa
```
```
安装成功提示如下:
安装成功提示如下:
```
```
Installing collected packages: pyasn1, rsa
Installing collected packages: pyasn1, rsa
Successfully installed pyasn1-0.4.8 rsa-4.7
Successfully installed pyasn1-0.4.8 rsa-4.7
```
```
5.
安装串口插件pyserial,安装命令如下:
5.
安装串口插件pyserial,安装命令如下:
```
```
pip3 install pyserial
pip3 install pyserial
```
```
安装成功提示如下:
安装成功提示如下:
```
```
Requirement already satisfied: pyserial in d:\programs\python37\lib\site-packages\pyserial-3.4-py3.7.egg (3.4)
Requirement already satisfied: pyserial in d:\programs\python37\lib\site-packages\pyserial-3.4-py3.7.egg (3.4)
```
```
6.
如果设备仅支持串口输出测试结果,则需要安装NFS Server
6.
如果设备仅支持串口输出测试结果,则需要安装NFS Server
-
Windows环境下安装,例如安装haneWIN NFS Server1.2.50。
-
Windows环境下安装,例如安装haneWIN NFS Server1.2.50。
-
Linux环境下安装,安装命令如下:
-
Linux环境下安装,安装命令如下:
```
```
sudo apt install nfs-kernel-server
sudo apt install nfs-kernel-server
```
```
安装成功提示如下:
安装成功提示如下:
```
```
Reading package lists... Done
Reading package lists... Done
Building dependency tree
Building dependency tree
Reading state information... Done
Reading state information... Done
nfs-kernel-server is already the newest version (1:1.3.4-2.1ubuntu5.3).
nfs-kernel-server is already the newest version (1:1.3.4-2.1ubuntu5.3).
0 upgraded, 0 newly installed, 0 to remove and 11 not upgraded.
0 upgraded, 0 newly installed, 0 to remove and 11 not upgraded.
```
```
7.
如果设备支持HDC连接,则需要安装HDC工具,安装流程请参考如下链接
7.
如果设备支持HDC连接,则需要安装HDC工具,安装流程请参考如下链接
https://gitee.com/openharmony/developtools_hdc_standard/blob/master/README_zh.md
https://gitee.com/openharmony/developtools_hdc_standard/blob/master/README_zh.md
## 安装环境检查
## 安装环境检查
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录