Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.07 KB

installation.md

File metadata and controls

33 lines (26 loc) · 1.07 KB

Installation

PyPI

This is the recommended way to install setupr.

  1. [OPTIONAL] Create a Python virtual environement. This will allow for proper isolation with your system. Note that direnv is a useful to automatically load any virtual environement.
  2. pip install setupr to install setupr itself.

GitHub release

  1. Download the wheel file from the latest release.
  2. [OPTIONAL] Create a Python virtual environement. This will allow for proper isolation with your system. Note that direnv is a useful to automatically load any virtual environement.
  3. Run pip install setupr-x.y.z-py3-none-any.whl where x.y.z is the latest version.
  4. Run setupr --help.

Source

  1. Download the source code from GitHub.
  2. Run poetry install -vv. See the poetry documentation for more details.
  3. Run setupr --help.