You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/agents.rst
+18-6Lines changed: 18 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -148,23 +148,35 @@ Usage
148
148
149
149
**Installing dependencies:**
150
150
151
-
First install the required dependencies using `pipx <https://pipx.pypa.io/>`_ (recommended) to ensure isolation and easy management:
151
+
First install the required dependencies and then gptme itself using `pipx <https://pipx.pypa.io/>`_ (recommended) to ensure isolation and easy management:
152
152
153
153
.. code-block:: bash
154
154
155
155
# Install pipx and other system dependencies
156
-
sudo apt install pipx tree # or `brew install pipx tree` on macOS
156
+
sudo apt install pipx tree
157
+
# or `brew install pipx tree`
157
158
158
-
# Install optional dependencies
159
-
sudo apt install shellcheck # or `brew install shellcheck` on macOS
159
+
# Install common dev dependencies (recommended)
160
+
sudo apt install git curl make build-essential \
161
+
python3 python3-dev python-is-python3
160
162
161
-
# Install required Python dependencies
163
+
# Install gptme itself
162
164
pipx install gptme
163
165
# or `pipx install -e ./gptme` to install from local source
164
-
# or `pipx install "git+https://github.com/gptme/gptme.git@master#egg=gptme[browser,server,telemetry]"`_ for latest from GitHub with extras
166
+
# or `pipx install "git+https://github.com/gptme/gptme.git@master#egg=gptme[browser,server,telemetry]"`_ for latest master with extras
0 commit comments