diff --git a/Ghidra/Debug/Debugger-rmi-trace/DEVNOTES.txt b/Ghidra/Debug/Debugger-rmi-trace/DEVNOTES.txt index 9815847397..cd52400b29 100644 --- a/Ghidra/Debug/Debugger-rmi-trace/DEVNOTES.txt +++ b/Ghidra/Debug/Debugger-rmi-trace/DEVNOTES.txt @@ -212,11 +212,11 @@ import sys print(sys.version) ``` -Suppose they get `3.8.10`. -They'd then take the major and minor numbers to invoke `python3.8` directly: +Suppose they get `3.9.19`. +They'd then take the major and minor numbers to invoke `python3.9` directly: ```bash -python3.8 -m pip install ... +python3.9 -m pip install ... ``` A fancy way to just have gdb print the python command for you is: diff --git a/GhidraDocs/GhidraClass/Debugger/B1-RemoteTargets.html b/GhidraDocs/GhidraClass/Debugger/B1-RemoteTargets.html index d7da3194cc..288fb4200e 100644 --- a/GhidraDocs/GhidraClass/Debugger/B1-RemoteTargets.html +++ b/GhidraDocs/GhidraClass/Debugger/B1-RemoteTargets.html @@ -301,8 +301,8 @@ class="sourceCode bash">(gdb) python-interactive >>> import sys >>> sys.version -

Suppose this identifies version 3.7. Retry the installation commands -using python3.7 -m pip .... If you have multiple copies of +

Suppose this identifies version 3.9. Retry the installation commands +using python3.9 -m pip .... If you have multiple copies of the same version in different locations, you may need to invoke python3 using its complete path.

In the worst case, copy the Python source over and add it to your diff --git a/GhidraDocs/GhidraClass/Debugger/B1-RemoteTargets.md b/GhidraDocs/GhidraClass/Debugger/B1-RemoteTargets.md index 0aa6155984..d9461996a9 100644 --- a/GhidraDocs/GhidraClass/Debugger/B1-RemoteTargets.md +++ b/GhidraDocs/GhidraClass/Debugger/B1-RemoteTargets.md @@ -145,8 +145,8 @@ Or, inside `gdb`: >>> sys.version ``` -Suppose this identifies version 3.7. -Retry the installation commands using `python3.7 -m pip ...`. +Suppose this identifies version 3.9. +Retry the installation commands using `python3.9 -m pip ...`. If you have multiple copies of the same version in different locations, you may need to invoke `python3` using its complete path. In the worst case, copy the Python source over and add it to your `PYTHONPATH`. diff --git a/GhidraDocs/InstallationGuide.html b/GhidraDocs/InstallationGuide.html index b6ef324e20..7cbfd2e0c4 100644 --- a/GhidraDocs/InstallationGuide.html +++ b/GhidraDocs/InstallationGuide.html @@ -98,7 +98,7 @@ Ghidra team if you have a specific need.

-
  • Python3 (3.7 to 3.12; for Debugger support)
  • +
  • Python3 (3.9 to 3.12; for Debugger support)