-
Notifications
You must be signed in to change notification settings - Fork 101
Update _rkdeveloptool.mdx #1080
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
Changes from all commits
ba58fe0
ce7857b
b3b0c8c
571193f
354a695
356dcc8
dd9a562
b3c14a3
93ba730
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -19,7 +19,7 @@ If your operating system does not provide rkdeveloptool, you will need to compil | |||||
| <Tabs queryString="host-os"> | ||||||
| <TabItem value="archlinux" label="Arch Linux"> | ||||||
|
|
||||||
| 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). | ||||||
|
|
||||||
| </TabItem> | ||||||
| <TabItem value="debian" label="Debian"> | ||||||
|
|
@@ -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. | ||||||
|
|
||||||
| <Tabs queryString="host-os"> | ||||||
| <TabItem value="archlinux" label="Arch Linux"> | ||||||
|
|
||||||
| The rkdeveloptool can be installed from [AUR](https://aur.archlinux.org/packages/rkdeveloptool-gui). | ||||||
|
|
||||||
| </TabItem> | ||||||
| <TabItem value="debian" label="Debian"> | ||||||
|
|
||||||
| 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 | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Python command syntax looks incorrect. If build_nuitka.py is a script file (not a module), it should be executed directly:
Suggested change
|
||||||
| sudo cp rkdeveloptool-gui /usr/local/sbin/ | ||||||
| ``` | ||||||
|
|
||||||
| </TabItem> | ||||||
| <TabItem value="macos" label="macOS"> | ||||||
|
|
||||||
| 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 | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Python command syntax looks incorrect here as well:
Suggested change
|
||||||
| cp rkdeveloptool-gui /opt/homebrew/bin/ | ||||||
| ``` | ||||||
|
|
||||||
| </TabItem> | ||||||
| </Tabs> | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The text incorrectly refers to 'rkdeveloptool' instead of 'rkdeveloptool-gui'.