mirror of
https://github.com/cs01/gdbgui
synced 2024-11-16 07:47:46 +01:00
update installation instructions
This commit is contained in:
parent
99c496fa8b
commit
74b8a3f974
2 changed files with 8 additions and 7 deletions
|
@ -34,7 +34,7 @@ Visit [gdbgui.com](https://gdbgui.com) for documentation, screenshots, and downl
|
|||
|
||||
|
||||
## Try Without Installing
|
||||
By using [pipx](https://github.com/pipxproject/pipx-app), you can run Python CLI programs in ephemeral one-time virtual environments.
|
||||
By using [pipx](https://github.com/pipxproject/pipx), you can run Python CLI programs in ephemeral one-time virtual environments.
|
||||
```
|
||||
pipx run gdbgui
|
||||
```
|
||||
|
@ -42,12 +42,13 @@ A new tab running the latest version of gdbgui will open in your browser. Press
|
|||
|
||||
You can install pipx like this:
|
||||
```
|
||||
curl https://raw.githubusercontent.com/cs01/pipx/master/get-pipx.py | python3
|
||||
pip install --user pipx
|
||||
pipx ensurepath
|
||||
```
|
||||
|
||||
## Install
|
||||
### Global
|
||||
This option relies on [pipx](https://github.com/pipxproject/pipx-app), the Python CLI binary runner and installer. It installs Python CLI programs in isolated virtual environments. `pipx` can run any Python CLI program, including gdbgui. This is the recommended installation method.
|
||||
This option relies on [pipx](https://github.com/pipxproject/pipx), the Python CLI binary runner and installer. It installs Python CLI programs in isolated virtual environments. `pipx` can run any Python CLI program, including gdbgui. This is the recommended installation method.
|
||||
```
|
||||
pipx install gdbgui
|
||||
```
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# gdbgui installation
|
||||
|
||||
## Try Without Installing
|
||||
By using [pipx](https://github.com/pipxproject/pipx-app), you can run Python CLI programs in ephemeral one-time virtual environments.
|
||||
By using [pipx](https://github.com/pipxproject/pipx), you can run Python CLI programs in ephemeral one-time virtual environments.
|
||||
```
|
||||
pipx run gdbgui
|
||||
```
|
||||
|
@ -9,10 +9,10 @@ A new tab running the latest version of gdbgui will open in your browser. Press
|
|||
|
||||
|
||||
## Recommended Installation Instructions
|
||||
gdbgui recommends using [pipx](https://github.com/pipxproject/pipx-app), a program to run Python CLI binaries in isolated environments. You can install pipx like this:
|
||||
gdbgui recommends using [pipx](https://github.com/pipxproject/pipx), a program to run Python CLI binaries in isolated environments. You can install pipx like this:
|
||||
```
|
||||
python3 -m pip install --user pipx-bootstrap
|
||||
pipx-bootstrap
|
||||
python3 -m pip install --user pipx
|
||||
pipx ensurepath
|
||||
```
|
||||
|
||||
Then install gdbgui with pipx:
|
||||
|
|
Loading…
Reference in a new issue