Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a documentation for adding other online source for a dependency. #8246

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,18 @@ poetry add pendulum@latest
See the [Dependency specification]({{< relref "dependency-specification" >}}) for more information on setting the version constraints for a package.
{{% /note %}}

The `add` command uses PyPi as its default source of dependency package. You can also specify other sources for your packages, such as other online source, git, local, and local and editable.

You can add an online source using [`source add`](#source-add) command. After the source has been added, you can then add a dependency with the newly added source:

```bash
# Use `source add` command to define a source
poetry source add --priority=explicit pytorch-gpu-src https://download.pytorch.org/whl/cu118

# Add an online dependency with the newly added source.
poetry add --source pytorch-gpu-src torch torchvision torchaudio
```

You can also add `git` dependencies:

```bash
Expand Down