Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 44bda7b

Browse files
authored
Merge pull request #439 from jumpstarter-dev/pip-dist
Point pip calls to our release index
2 parents 09ab82f + f6e383f commit 44bda7b

File tree

21 files changed

+31
-23
lines changed

21 files changed

+31
-23
lines changed

__templates__/create_driver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ cat > "${README_FILE}" << 'EOF'
4242
## Installation
4343
4444
```shell
45-
pip install jumpstarter-driver-${DRIVER_NAME}
45+
pip3 install --extra-index-url https://pkg.jumpstarter.dev/simple/ jumpstarter-driver-${DRIVER_NAME}
4646
```
4747
4848
## Configuration

docs/source/getting-started/installation/packages.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Install the Python package using `pip` or a similar tool. You need Python
2121
{{requires_python}}:
2222

2323
```shell
24-
$ pip3 install --extra-index-url https://pkg.jumpstarter.dev/ jumpstarter-all
24+
$ pip3 install --extra-index-url https://pkg.jumpstarter.dev/simple/ jumpstarter-all
2525
$ mkdir -p "${HOME}/.config/jumpstarter/"
2626
$ sudo mkdir /etc/jumpstarter
2727
```
@@ -32,9 +32,17 @@ installing in a virtual environment instead:
3232
```shell
3333
$ python3 -m venv ~/.venv/jumpstarter
3434
$ source ~/.venv/jumpstarter/bin/activate
35-
$ pip3 install --extra-index-url https://pkg.jumpstarter.dev/ jumpstarter-all
35+
$ pip3 install --extra-index-url https://pkg.jumpstarter.dev/simple/ jumpstarter-all
3636
```
3737

38+
Additional package indexes are available, this is a complete list of our indexes:
39+
40+
| Index | Description |
41+
|-------|-------------|
42+
| [releases](https://pkg.jumpstarter.dev/) | Release, or release-candidate versions |
43+
| [main](https://pkg.jumpstarter.dev/main/) | Index tracking the main branch, equivalent to installing from sources |
44+
| [release-0.6](https://pkg.jumpstarter.dev/release-0.6) | Index tracking a stable branch |
45+
3846
### Installing from Source
3947

4048
Jumpstarter undergoes active development with frequent feature additions. We
@@ -92,4 +100,4 @@ If you've configured a `jmp` alias you can undefine it with:
92100

93101
```shell
94102
$ unalias jmp
95-
```
103+
```

packages/jumpstarter-driver-can/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ connections.
66
## Installation
77

88
```shell
9-
pip install jumpstarter-driver-can
9+
pip3 install --extra-index-url https://pkg.jumpstarter.dev/simple/ jumpstarter-driver-can
1010
```
1111

1212
## Configuration

packages/jumpstarter-driver-composite/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## Installation
66

77
```bash
8-
pip install jumpstarter-driver-composite
8+
pip3 install --extra-index-url https://pkg.jumpstarter.dev/simple/ jumpstarter-driver-composite
99
```
1010

1111
## Configuration

packages/jumpstarter-driver-corellium/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
## Installation
77

88
```shell
9-
pip install jumpstarter-driver-corellium
9+
pip3 install --extra-index-url https://pkg.jumpstarter.dev/simple/ jumpstarter-driver-corellium
1010
```
1111

1212
## Configuration

packages/jumpstarter-driver-dutlink/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Link devices.
66
## Installation
77

88
```shell
9-
pip install jumpstarter-driver-dutlink
9+
pip3 install --extra-index-url https://pkg.jumpstarter.dev/simple/ jumpstarter-driver-dutlink
1010
```
1111

1212
## Configuration

packages/jumpstarter-driver-http/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## Installation
66

77
```shell
8-
pip install jumpstarter-driver-http
8+
pip3 install --extra-index-url https://pkg.jumpstarter.dev/simple/ jumpstarter-driver-http
99
```
1010

1111
## Configuration

packages/jumpstarter-driver-network/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ servers and connections.
66
## Installation
77

88
```shell
9-
pip install jumpstarter-driver-network
9+
pip3 install --extra-index-url https://pkg.jumpstarter.dev/simple/ jumpstarter-driver-network
1010
```
1111

1212
## Configuration

packages/jumpstarter-driver-opendal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ storages attached to the exporter.
66
## Installation
77

88
```shell
9-
pip install jumpstarter-driver-opendal
9+
pip3 install --extra-index-url https://pkg.jumpstarter.dev/simple/ jumpstarter-driver-opendal
1010
```
1111

1212
## Configuration

packages/jumpstarter-driver-power/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ control devices.
66
## Installation
77

88
```shell
9-
pip install jumpstarter-driver-power
9+
pip3 install --extra-index-url https://pkg.jumpstarter.dev/simple/ jumpstarter-driver-power
1010
```
1111

1212
## Configuration

0 commit comments

Comments
 (0)