Installation

System Requirements

  • Python 3.10 or higher

  • ClickUp API token

  • pip or uv package manager

Installation Steps

  1. Install from PyPI:

    pip install quickup
    
  2. Alternatively, install using uv:

    uv pip install quickup
    
  3. Verify the installation:

    quickup --help
    

Configuration

After installation, authenticate with ClickUp using one of the methods below.

Option 2: Environment Variable

For automation or CI environments, export the token in your shell:

export CLICKUP_TOKEN=your_token_here

To make this permanent, add it to your shell configuration file (e.g., ~/.bashrc, ~/.zshrc):

echo 'export CLICKUP_TOKEN=your_token_here' >> ~/.zshrc

Option 3: .env File

Create a .env file in your project directory:

CLICKUP_TOKEN=your_token_here

QuickUp! will automatically load the token from this file.

Note

When both an environment/.env token and an OAuth token exist, the environment token takes precedence.

Getting Your ClickUp API Token (for manual setup)

  1. Log in to your ClickUp account

  2. Go to Settings → Apps → ClickUp API

  3. Click on "Authorize"

  4. Copy your API token

  5. Store it securely

Upgrading

To upgrade to the latest version:

pip install --upgrade quickup

Uninstallation

To remove QuickUp!:

pip uninstall quickup