Skip to content

Installation

Nemo edited this page Jul 21, 2021 · 3 revisions

pystitcher is written using Python and distributed as a python package using PyPi. You can install it using:

pip

You can use pip to install pystitcher:

pip install pystitcher (system wide) pip install --user pystitcher (user)

pipx is a tool to help you install and run end-user applications written in Python. It's roughly similar to macOS's brew, JavaScript's npx, and Linux's apt.

To install, run:

pipx install pystitcher

To upgrade pystitcher, you can run:

pipx upgrade pystitcher

Install from source

git clone https://www.github.com/captn3m0/pystitcher
cd pystitcher
pip install .

To upgrade, you can run the following:

git pull origin main
pip install .

Packaging

pystitcher is not packaged for any distributions yet. If you do package it anywhere, please update this page :)

Checking current version

You can always see which version of pystitcher you are using by running:

pystitcher --version

Clone this wiki locally