GP-6228: missed these

GP-6228: change to >=
This commit is contained in:
d-millar
2025-12-18 11:57:18 -05:00
parent 9e7b888298
commit 314225b920
8 changed files with 7 additions and 9 deletions

View File

@@ -165,7 +165,7 @@ The Debugger now uses Python to connect to the host platform's native debuggers.
a [supported](#minimum-requirements) version of Python and some additional packages. These packages
are included in the distribution, but you may still install them from PyPI if you prefer:
* psutil
* protobuf==3.20.3
* protobuf>=3.20.3
* Pybag>=2.2.12 (for WinDbg support)
Different native debuggers have varying requirements, so you do not necessarily have to install all

View File

@@ -287,7 +287,7 @@ the Python source over and add it to your <code>PYTHONPATH</code>.</p>
<p>Double-check that you have installed all the required packages and
their dependencies. A common forgotten or incorrectly-versioned
dependency is <code>protobuf</code>. We developed using
<code>protobuf==3.20.3</code>. Its “sdist” package is distributed with
<code>protobuf==3.20.3</code>, newer versions generally work fine. Its “sdist” package is distributed with
Ghidra under <code>Debugger-rmi-trace/pypkg/dist</code> for your
convenience.</p>
<p>It is also possible that <code>gdb</code> has embedded a different

View File

@@ -126,7 +126,7 @@ If that doesn't work, then in the worst case, copy the Python source over and ad
Double-check that you have installed all the required packages and their dependencies.
A common forgotten or incorrectly-versioned dependency is `protobuf`.
We developed using `protobuf==3.20.3`.
We developed using `protobuf==3.20.3`, newer versions generally work fine.
Its "sdist" package is distributed with Ghidra under `Debugger-rmi-trace/pypkg/dist` for your convenience.
It is also possible that `gdb` has embedded a different version of the interpreter than the one that `python3` provides.