Installer Tool for Python Programs
Project description
PINSTALL - Installer/Utility Tool for Python Programs
This is a simple "swiss-army" tool to facilitate installing Python programs on Linux systems. The following commands are presently implemented, each as an independent plugin.
The latest documentation and code is available at https://github.com/bulletmark/pinstall.
Usage
Type pinstall or pinstall -h to view the usage summary:
usage: pinstall [-h]
{project,pyenv,service,status,uv,venv-legacy,venv,version} ...
Installer/utility tool for Python programs.
options:
-h, --help show this help message and exit
Commands:
{project,pyenv,service,status,uv,venv-legacy,venv,version}
project Creates a bare-bones Python pyproject.toml file to
facilitate installation by pipx or pip.
pyenv Updates all pyenv python versions and creates links to
current major versions.
service Installs systemd services and corresponding timers.
status Reports systemctl status of services and timers
installed from the current directory.
uv Installs or updates the uv program.
venv-legacy Creates a Python virtual environment using legacy venv
+ pip.
venv Creates a Python virtual environment using uv.
version Reports this program's version.
Type pinstall <command> -h to see specific help/usage for any
individual command:
Command project
usage: pinstall project [-h] [-f REQUIREMENTS_FILE] [-o] [app]
Creates a bare-bones Python pyproject.toml file to facilitate
installation by pipx or pip.
Useful when you have an app.py and it's special package dependencies
specified in requirements.txt and want to install that app.py (as
command "app") using pipx or pip but don't have a pyproject.toml (or old
style setup.py). Run this command in the same directory as the files and
it will create a bare-bones ./pyproject.toml file. This will allow you
to install the app using `pipx install .`, or `pip install .` commands.
Will also parse PEP 723 dependencies from a script tag in the Python
file.
Your app.py must have a main() function to be called when the app is
run.
positional arguments:
app app[.py] or app/ package to create pyproject.toml for.
If not specified then looks for a single .py file in
current directory.
options:
-h, --help show this help message and exit
-f, --requirements-file REQUIREMENTS_FILE
default="requirements.txt"
-o, --overwrite overwrite existing pyproject.toml file
Command pyenv
usage: pinstall pyenv [-h] [-l] [-p] [-m]
Updates all pyenv python versions and creates links to current major versions.
options:
-h, --help show this help message and exit
-l, --list just list latest versions, do not update or purge
-p, --purge just purge old versions if later is installed
-m, --remove-major-symlinks
remove all symlinks to major versions
Command service
usage: pinstall service [-h] [-u] [-s] [-e] [-r] [units ...]
Installs systemd services and corresponding timers.
Substitutes template strings within each *.service file in the current
directory (and in any corresponding .timer file); installs the
substituted file[s] to the appropriate systemd system (or user) unit
configuration directory; then enables and starts the service (or the
timer).
Template strings can be any of the following:
HOME : Home directory path of the invoking user
USER : User name of invoking user
USERID : Numeric user ID of the invoking user
GROUPID : Numeric group ID of the invoking user
WORKDIR : Directory path of the service file
PROGDIR : Same as WORKDIR
BASENAME : Directory name of the service file
PROG : Stem name of the service file (i.e. "name" in "name.service")
PROGTITLE : Upper case PROG
Template strings are specified in .service and .timer files by wrapping
them in hash symbols. Installed copies of these source files have all
instances of template strings replaced by their value. E.g. #HOME#
gets replaced by the user's home directory path.
positional arguments:
units systemd service file[s]
options:
-h, --help show this help message and exit
-u, --user install as user service
-s, --no-start do not start service[s]
-e, --no-enable do not enable service[s]
-r, --remove just uninstall and remove service[s]
Command status
usage: pinstall status [-h] [-u] [units ...]
Reports systemctl status of services and timers installed from the
current directory.
positional arguments:
units systemd service file[s]
options:
-h, --help show this help message and exit
-u, --user report for user service
Command uv
usage: pinstall uv [-h] [-r] [-b BINDIR] [-V]
Installs or updates the uv program.
Read about uv at https://github.com/astral-sh/uv.
If run this as root/sudo, it installs to /usr/bin/uv otherwise it
installs as your user to $HOME/.local/bin/uv. Requires curl to be
installed.
options:
-h, --help show this help message and exit
-r, --remove just remove any existing uv executable
-b, --bindir BINDIR install to bindir instead of default
-V, --version just report version of installed uv executable
Command venv-legacy
usage: pinstall venv-legacy [-h] [-d DIR] [-p PYTHON]
[-f REQUIREMENTS_FILE] [-r] [-u]
[-i [PACKAGE ...]] [-w] [-W] [-R] [-v]
[args ...]
Creates a Python virtual environment using legacy venv + pip.
Runs `python -m venv` to create a `.venv/` (optionally for the specified
Python name, or path); adds a .gitignore to it to be automatically
ignored by git; upgrades the venv with the latest pip + setuptools +
wheel; then installs all package dependencies from 1) requirements.txt
if present, or 2) from pyproject.toml if present.
positional arguments:
args optional arguments to python -m venv (add by starting
with "--"). See options in `python -m venv -h`
options:
-h, --help show this help message and exit
-d, --dir DIR directory name to create, default=".venv"
-p, --python PYTHON python executable (or venv dir), default="python3"
-f, --requirements-file REQUIREMENTS_FILE
default="requirements.txt"
-r, --no-require don't pip install requirements/dependencies
-u, --no-upgrade don't upgrade pip/setuptools in venv
-i, --install [PACKAGE ...]
also install (1 or more) given packages
-w, --without-pip don't install pip or requirements in venv (i.e. pass
--without-pip to python -m venv)
-W, --no-wheel don't install wheel in venv
-R, --remove just remove any existing venv and finish
-v, --verbose verbose pip install (can add multiple times to
increase verbosity)
Command venv
usage: pinstall venv [-h] [-d DIR] [-p PYTHON | -P PYSTAND_PYTHON] [-u UV]
[-f REQUIREMENTS_FILE] [-r] [-i [PACKAGE ...]] [-R]
[args ...]
Creates a Python virtual environment using uv.
Runs `uv venv` to create a `.venv/` (optionally for the specified Python
name, or path) then installs all package dependencies from 1)
requirements.txt if present, or 2) from pyproject.toml if present.
[uv](https://github.com/astral-sh/uv) is a new Python installation tool
which is more efficient and **much** faster than `python -m venv` and
`pip`. You can use the `venv` command pretty much in place of `venv-legacy`
and it will work similarly.
positional arguments:
args optional arguments to `uv venv` command(add by
starting with "--"). See options in `uv venv -h`
options:
-h, --help show this help message and exit
-d, --dir DIR directory name to create, default=".venv"
-p, --python PYTHON python executable (or venv dir), default="python3"
-P, --pystand-python PYSTAND_PYTHON
Run with given pystand version of python
-u, --uv UV path to uv executable, default="uv"
-f, --requirements-file REQUIREMENTS_FILE
default="requirements.txt"
-r, --no-require don't pip install requirements/dependencies
-i, --install [PACKAGE ...]
also install (1 or more) given packages
-R, --remove just remove any existing venv and finish
Command version
usage: pinstall version [-h]
Reports this program's version.
options:
-h, --help show this help message and exit
Management of pyenv versions
Pyenv gives you the handy ability to
install multiple versions of Python. However, there is no easy/quick way
to update all those versions unless you update each manually. So
pinstall offers a pyenv command to do this. Just run pinstall pyenv
which will check your versions and update any which have a newer minor
version. E.g. if you have 3.7.3 installed and 3.7.4 is available then
pinstall pyenv will invoke pyenv to install 3.7.4. You can also run
pinstall pyenv -p to automatically purge any older/superceded
versions, i.e. to remove 3.7.3 in this example.
pinstall pyenv also does something else each time you run it. It
creates or updates major version links. E.g. after installing 3.7.4 as
in the above example, pinstall pyenv will also create a link in your
pyenv versions directory 3.7 -> 3.7.4. This allows you to create a
virtual environment in either of two ways:
-
pinstall venv -p ~/.pyenv/versions/3.7.4/bin/pythonwill create a virtual environment using 3.7.4 permanently, or: -
pinstall venv -p ~/.pyenv/versions/3.7/bin/pythonwill create a virtual environment using the link 3.7 which initially points to 3.7.4 but will automatically use 3.7.5 when/if the minor version gets updated (i.e. after you have done a laterpinstall pyenvto find and install a new 3.7.5). Note that python minor (i.e. maintenance) version updates are always backwards compatible.
Installation
Arch Linux users can install pinstall from the AUR.
Python 3.8 or later is required and the sudo
program must be installed (to use the service command).
Note pinstall is on PyPI so the
easiest way to install it is to use uv tool (or
pipx or pipxu).
$ uv tool install pinstall
To upgrade:
$ uv tool upgrade pinstall
To uninstall:
$ uv tool uninstall pinstall
Command Line Tab Completion
Command line shell tab
completion is
automatically enabled on pinstall commands and options using
argcomplete. You may need to
first (once-only) activate argcomplete global
completion.
License
Copyright (C) 2023 Mark Blakeney. This program is distributed under the terms of the GNU General Public License. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License at https://en.wikipedia.org/wiki/GNU_General_Public_License for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pinstall-1.23.tar.gz.
File metadata
- Download URL: pinstall-1.23.tar.gz
- Upload date:
- Size: 18.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a89e587ca02b6f3014c808a46dcaa73a04d213611b69b0937f123dda44e66bba
|
|
| MD5 |
499ea822721a087cc2ebf9cef7a741e1
|
|
| BLAKE2b-256 |
3315184e6a752f5d17d1e2be923ae1cbb4af4870e07d2a7f5aee83670ef92f3a
|
File details
Details for the file pinstall-1.23-py3-none-any.whl.
File metadata
- Download URL: pinstall-1.23-py3-none-any.whl
- Upload date:
- Size: 20.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f53ced3cabedc184f74d22e773aa2d5fefdafdb7dee57c65687a7a65d381bb5c
|
|
| MD5 |
6fc35656de9168119225bc7c1644b3e3
|
|
| BLAKE2b-256 |
40ad4b36f411808f7e8de389ba2047b5f07f6a2701e17bcb16ee218307e5a34e
|