File: index.md

package info (click to toggle)
python-pbs-installer 2025.12.02-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 584 kB
  • sloc: python: 6,137; sh: 24; makefile: 2
file content (49 lines) | stat: -rw-r--r-- 1,414 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Welcome to the documentation of pbs-installer

An installer for [@indygreg](https://github.com/indygreg)'s [python-build-standalone](https://github.com/indygreg/python-build-standalone)

## Installation

It's highly recommended to install `pbs-installer` with [`pipx`](https://github.com/pypa/pipx):

```bash
pipx install pbs-installer
```

Or more conviniently, you can run with `pipx` directly:

```bash
pipx run pbs-installer --help
```

## Usage

::: pbs_installer
    options:
      heading_level: 3
      show_docstring_modules: false

## CLI Usage

`pbs-installer` also ships with a CLI named `pbs-install`:

```bash
usage: pbs-install [-h] [--version-dir] -d DESTINATION [--arch {arm64,i686,x86_64}] [--platform {darwin,linux,windows}] [-v] [-l] version

Installer for Python Build Standalone

options:
  -h, --help            show this help message and exit
  -v, --verbose         Enable verbose logging
  -l, --list            List installable versions

Install Arguments:
  version               The version of Python to install, e.g. 3.8,3.10.4
  --version-dir         Install to a subdirectory named by the version
  -d DESTINATION, --destination DESTINATION
                        The directory to install to
  --arch {arm64,i686,x86_64}
                        Override the architecture to install
  --platform {darwin,linux,windows}
                        Override the platform to install
```