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
ba626b3a
Unverified
Commit
ba626b3a
authored
Apr 04, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update README
parent
87f605fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
4 deletions
+29
-4
README.md
+29
-4
No files found.
README.md
View file @
ba626b3a
...
...
@@ -7,9 +7,6 @@ ensuring you have the right stack everywhere.

The package is
**highly experimental**
at the moment so expect things to change and break.
However, if you feel adventurous feedback and pull requests are greatly appreciated.
Also, be aware that the features described here are the goal that this library is aiming
for and, as of now, not all of them are implemented (but most of them are).
The dependency management is done while the packaging and publishing are still at the beginning.
...
...
@@ -19,10 +16,38 @@ Python project's with previous versions without any problem.
## Installation
Poetry provides a custom installer that will install
`poetry`
isolated
from the rest of your system by vendorizing its dependencies. This is the
recommended way of installing
`poetry`
.
```
bash
curl
-sSL
https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
```
Alternatively, you can download the
`get-poetry.py`
file and execute it separately.
If you want to install prerelease versions, you can do so by passing
`--preview`
to
`get-poetry.py`
:
```
bash
p
ip install poetry
p
ython get-poetry.py
--preview
```
Similarly, if you want to install a specific version, you can use
`--version`
:
```
bash
python get-poetry.py
--version
0.7.0
```
Using
`pip`
to install
`poetry`
is also possible.
```
bash
pip install
--user
poetry
```
Be aware, however, that it will also install poetry's dependencies
which might cause conflicts.
### Enable tab completion for Bash, Fish, or Zsh
`poetry`
supports generating completion scripts for Bash, Fish, and Zsh.
...
...
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