/** * **pip** - The Python package installer * * @domain `pip.pypa.io` * @programs `pip`, `pip3.8`, `pip3.9`, `pip3.10`, `pip3.11` * @version `25.3.0` (29 versions available) * @versions From newest version to oldest. * * @install `launchpad install pip.pypa.io` * @homepage https://pip.pypa.io/ * @dependencies `pkgx.sh^1` * @buildDependencies `python.org@~3.11`, `crates.io/semverator@^0.4.3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.pippypaio * console.log(pkg.name) // "pip" * console.log(pkg.description) // "The Python package installer" * console.log(pkg.programs) // ["pip", "pip3.8", ...] * console.log(pkg.versions[0]) // "25.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pip-pypa-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pippypaioPackage: { /** * The display name of this package. */ name: 'pip'; /** * The canonical domain name for this package. */ domain: 'pip.pypa.io'; /** * Brief description of what this package does. */ description: 'The Python package installer'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pip.pypa.io/package.yml'; homepageUrl: 'https://pip.pypa.io/'; githubUrl: 'https://github.com/pypa/pip'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pip.pypa.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +pip.pypa.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install pip.pypa.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pip', 'pip3.8', 'pip3.9', 'pip3.10', 'pip3.11']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['pkgx.sh^1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['python.org@~3.11', 'crates.io/semverator@^0.4.3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['25.3.0', '25.2.0', '25.1.1', '25.1.0', '25.0.1', '25.0.0', '24.3.1', '24.3.0', '24.2.0', '24.1.2', '24.1.1', '24.1.0', '24.0.0', '23.3.2', '23.3.1', '23.3.0', '23.2.1', '23.2.0', '23.1.2', '23.1.1', '23.1.0', '23.0.1', '23.0.0', '22.3.1', '22.3.0', '21.3.1', '20.3.4', '19.3.1', '18.1.0']; aliases: readonly [] }; export type PippypaioPackage = typeof pippypaioPackage