Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
eb5c17ce
Commit
eb5c17ce
authored
Sep 02, 2022
by
Bjorn Neergaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs(ci): turn on syntax highlighting and tweak instructions
parent
f1af3f8e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
docs/_index.md
+6
-5
No files found.
docs/_index.md
View file @
eb5c17ce
...
...
@@ -308,7 +308,7 @@ the installer does to safely install Poetry isolated from the rest of your syste
for any Python package, with a syntax/usage that is similar to `
pip
`. `
pipx
` should be considered equally supported in
comparison to the official installer, and should be one of your top choices for use of Poetry in CI.
```
```
bash
pipx install poetry==1.2.0
```
...
...
@@ -318,10 +318,11 @@ For maximum control in your CI environment, installation with `pip` is fully sup
consider. While this requires more explicit commands and knowledge of Python packaging from you, it in return offers the
best debugging experience, and leaves you subject to the fewest external tools.
```
virtualenv /opt/poetry
/opt/poetry/bin/pip install poetry==1.2.0
/opt/poetry/bin/poetry --version
```bash
export POETRY_HOME=/opt/poetry
python3 -m venv $POETRY_HOME
$POETRY_HOME/bin/pip install poetry==1.2.0
$POETRY_HOME/bin/poetry --version
```
{{% note %}}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment