Skip to content

Commit d66cc4d

Browse files
committed
tweaks
1 parent e080ff5 commit d66cc4d

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

docs/_index.md

+7-11
Original file line numberDiff line numberDiff line change
@@ -216,23 +216,21 @@ pipx install poetry
216216
pipx install poetry==1.2.0
217217
```
218218
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
220220
versions. Each version is given a unique, user-specified suffix, which will be used to create a unique binary name:
221221
222222
```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
225225
```
226226
227-
or
228-
229227
```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
232230
```
233231
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:
236234
237235
```
238236
pipx install --suffix @master git+https://github.com/python-poetry/poetry.git@master
@@ -273,8 +271,6 @@ $VENV_PATH/bin/pip install poetry
273271
274272
Poetry will be available at `$VENV_PATH/bin/poetry` and can be invoked directly or symlinked elsewhere.
275273
276-
As this install is effectively managed by Poetry, `poetry self` commands will still be able to manipulate it.
277-
278274
To uninstall Poetry, simply delete the entire `$VENV_PATH` directory.
279275
280276
{{< /tab >}}

0 commit comments

Comments
 (0)