Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hdc 环境变量设置 #12

Open
cnwutianhao opened this issue Feb 11, 2024 · 0 comments
Open

hdc 环境变量设置 #12

cnwutianhao opened this issue Feb 11, 2024 · 0 comments

Comments

@cnwutianhao
Copy link
Owner

cnwutianhao commented Feb 11, 2024

hdc(HarmonyOS Device Connector)是 HarmonyOS 为开发人员提供的用于调试的命令行工具,通过该工具可以在 windows/linux/mac 系统上与真实设备或者模拟器进行交互。

hdc 工具通过 HarmonyOS SDK 获取,存放于 /Huawei/Sdk/openharmony/版本号/toolchains/ 目录下。

一、Windows 系统 hdc 环境变量设置方法

  1. 打开环境变量

    右键 此电脑 > 属性 > 高级系统设置 > 高级 > 环境变量
    
  2. 新建系统变量

    环境变量 > 系统环境 > 新建
    
    变量名:OHOS_HOME
    变量值:D:\Huawei\Sdk
    
  3. 添加到 Path

    找到 环境变量 > 系统环境 > Path 变量
    
    然后双击打开,点击新建
    
    在最后一行填写 %OHOS_HOME%\openharmony\版本号\toolchains
    
  4. 检查是否已经成功配置 hdc

    在终端输入 hdc version

    如果出现类似如下内容证明 hdc 配置成功:
    windows_hdc

二、macOS 系统 hdc 环境变量设置方法

  1. 编辑 .zshrc 文件

    vi ~/.zshrc
  2. 在 .zshrc 文件中添加以下内容

    export HMOS_HOME=/Users/用户/Library/Huawei/Sdk
    export PATH=${PATH}:${HMOS_HOME}/openharmony/版本号/toolchains
  3. 保存 .zshrc 文件,并退出

    点击 esc
    输入 :wq
    回车
  4. 加载并执行 .zshrc 文件

    source ~/.zshrc
  5. 检查是否已经成功配置 hdc

    在终端输入 hdc version

    如果出现类似如下内容证明 hdc 配置成功:
    macOS_hdc

三、Linux 系统 hdc 环境变量设置方法

未完待续。。。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant