@@ -216,23 +216,21 @@ pipx install poetry
216
216
pipx install poetry==1.2.0
217
217
```
218
218
219
- `pipx` can also install versions of Poetry in parallel, which allows for easy testing of different or prerelease
219
+ `pipx` can also install versions of Poetry in parallel, which allows for easy testing of alternate or prerelease
220
220
versions. Each version is given a unique, user-specified suffix, which will be used to create a unique binary name:
221
221
222
222
```bash
223
- pipx install --suffix=@preview --pip-args=--pre poetry
224
- poetry@preview --version
223
+ pipx install --suffix=@1.2.0 poetry==1.2.0
224
+ poetry@1.2.0 --version
225
225
```
226
226
227
- or
228
-
229
227
```bash
230
- pipx install --suffix=@1.2.0 poetry==1.2.0
231
- poetry@1.2.0 --version
228
+ pipx install --suffix=@preview --pip-args=--pre poetry
229
+ poetry@preview --version
232
230
```
233
231
234
- Finally, `pipx` can install any valid Python URL spec, which allows for installations of the development version from `git`,
235
- or even the local testing of Pull Requests :
232
+ Finally, `pipx` can install any valid [pip requirement spec](https://pip.pypa.io/en/stable/cli/pip_install/) , which
233
+ allows for installations of the development version from `git`, or even for local testing of pull requests :
236
234
237
235
```
238
236
pipx install --suffix @master git+https://github.com/python-poetry/poetry.git@master
@@ -273,8 +271,6 @@ $VENV_PATH/bin/pip install poetry
273
271
274
272
Poetry will be available at `$VENV_PATH/bin/poetry` and can be invoked directly or symlinked elsewhere.
275
273
276
- As this install is effectively managed by Poetry, `poetry self` commands will still be able to manipulate it.
277
-
278
274
To uninstall Poetry, simply delete the entire `$VENV_PATH` directory.
279
275
280
276
{{< /tab >}}
0 commit comments