Skip to content

โœ… Installation Guide

Why pipx?

pipx installs Python CLI tools in isolated environments, keeping your global Python setup clean while making the command available system-wide.

๐Ÿ“ฆ Install pipx (if not already installed)

brew install pipx
pipx ensurepath
sudo apt update
sudo apt install pipx
pipx ensurepath
sudo pipx ensurepath --global  # Optional: enable global usage
# Using Scoop
scoop install pipx

# Or using pip
python -m pip install --user pipx
python -m pipx ensurepath
python -m pip install --user pipx
python -m pipx ensurepath

โœ… Install Escapist with pipx

Install Command

pipx install escapist

๐Ÿ” Verify Installation

Run the following to confirm it was installed correctly:

escapist --version

๐Ÿ Alternative: Using pip

Not using pipx?

You can also install Escapist using pip, though it's strongly recommended to use a virtual environment.

pip install escapist

Use a virtual environment

Avoid installing globally with pip. Instead:

python -m venv venv
source venv/bin/activate  # Windows: venv\Scripts\activate
pip install escapist

๐Ÿ”„ Upgrading

pipx upgrade escapist
pip install --upgrade escapist

๐Ÿงน Uninstalling

pipx uninstall escapist
pip uninstall escapist

๐Ÿ–ฅ๏ธ System Requirements

Requirements

  • Python: 3.8 or higher
  • Operating System: Windows, macOS, Linux
  • Dependencies: Automatically installed during setup