diff --git a/docs/common/dev/_rkdeveloptool.mdx b/docs/common/dev/_rkdeveloptool.mdx index 9db096717..20dae6426 100644 --- a/docs/common/dev/_rkdeveloptool.mdx +++ b/docs/common/dev/_rkdeveloptool.mdx @@ -17,7 +17,7 @@ rkdeveloptool 可以被认为是[开源版本](https://opensource.rock-chips.com -可从 [AUR](https://aur.archlinux.org/packages/rkdeveloptool) 安装 rkdeveloptool。 +可从 [AUR](https://aur.archlinux.org/packages/rkdeveloptool-git) 安装 rkdeveloptool。 @@ -94,3 +94,44 @@ sudo rkdeveloptool wl 0 ```bash sudo rkdeveloptool rd ``` + +## 安装 rkdeveloptool-gui + +如果你的操作系统没有提供 rkdeveloptool-gui,则需要从源代码编译安装。 + + + + +可从 [AUR](https://aur.archlinux.org/packages/rkdeveloptool-gui) 安装 rkdeveloptool-gui。 + + + + +从命令行中执行以下命令进行安装: + +```bash +sudo apt-get update +sudo apt-get install -y git +git clone https://github.com/gahingwoo/RKDevelopTool-GUI.git +cd RKDevelopTool-GUI +pip install -r requirements.txt +python -m build_nuitka.py +sudo cp rkdeveloptool-gui /usr/local/sbin/ +``` + + + + +请首先安装 [Homebrew](https://brew.sh/),然后从命令行中执行以下命令进行安装: + +```bash +brew install git +git clone https://github.com/gahingwoo/RKDevelopTool-GUI.git +cd RKDevelopTool-GUI +pip install -r requirements.txt +python -m build_nuitka.py +cp rkdeveloptool-gui /opt/homebrew/bin/ +``` + + + diff --git a/i18n/en/docusaurus-plugin-content-docs/current/common/dev/_rkdeveloptool.mdx b/i18n/en/docusaurus-plugin-content-docs/current/common/dev/_rkdeveloptool.mdx index 82cd1c172..e18b2a31a 100644 --- a/i18n/en/docusaurus-plugin-content-docs/current/common/dev/_rkdeveloptool.mdx +++ b/i18n/en/docusaurus-plugin-content-docs/current/common/dev/_rkdeveloptool.mdx @@ -19,7 +19,7 @@ If your operating system does not provide rkdeveloptool, you will need to compil -The rkdeveloptool can be installed from [AUR](https://aur.archlinux.org/packages/rkdeveloptool). +The rkdeveloptool can be installed from [AUR](https://aur.archlinux.org/packages/rkdeveloptool-git). @@ -96,3 +96,45 @@ Download links for the required Loader and Image files can be found below. ```bash sudo rkdeveloptool rd ``` + +## Installation for rkdeveloptool-gui + +If your operating system does not provide rkdeveloptool-gui, you will need to compile and install it from source. + + + + +The rkdeveloptool can be installed from [AUR](https://aur.archlinux.org/packages/rkdeveloptool-gui). + + + + +Execute the following command from the command line to install: + +```bash +sudo apt-get update +sudo apt-get install -y git +git clone https://github.com/gahingwoo/RKDevelopTool-GUI.git +cd RKDevelopTool-GUI +pip install -r requirements.txt +python -m build_nuitka.py +sudo cp rkdeveloptool-gui /usr/local/sbin/ +``` + + + + +Please install [Homebrew](https://brew.sh/) first, then run the following command from the command line to install it: + +```bash +brew install git +git clone https://github.com/gahingwoo/RKDevelopTool-GUI.git +cd RKDevelopTool-GUI +pip install -r requirements.txt +python -m build_nuitka.py +cp rkdeveloptool-gui /opt/homebrew/bin/ +``` + + + +