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
cbee6649
Commit
cbee6649
authored
Mar 22, 2022
by
Arun Babu Neelicattu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc: add warning for --with and --without usage
parent
7248c2ec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
docs/managing-dependencies.md
+9
-0
No files found.
docs/managing-dependencies.md
View file @
cbee6649
...
...
@@ -132,6 +132,15 @@ You can also opt in [optional groups]({{< relref "#optional-groups" >}}) by usin
poetry install
--with
docs
```
{{% warning %}}
When used together,
`--without`
takes precedence over
`--with`
. For example, the following command
will only install the dependencies specified in the
`test`
group.
```
bash
poetry install
--with
docs
--without
test
,docs
```
{{% /warning %}}
Finally, in some case you might want to install
**only specific groups**
of dependencies
without installing the default set of dependencies. For that purpose, you can use
the
`--only`
option.
...
...
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