Skip to Content
Getting StartedInstallation

Installation

Prerequisites

Before installing Sequor, ensure you have:

  • Python 3.9 or higher
  • pip (Python package installer)

Setting up a virtual environment

We recommend installing Sequor in a dedicated virtual environment to isolate it from other Python packages on your system.

The commands below create a virtual environment in your home directory. Feel free to adjust the path to your preferred location.

# For macOS/Linux: python -m venv ~/sequor-venv # Creates environment in your home directory # For Windows: python -m venv %USERPROFILE%\sequor-venv # Creates environment in your user profile folder

Activate the environment

# For macOS/Linux: source ~/sequor-venv/bin/activate # For Windows: %USERPROFILE%\sequor-venv\Scripts\activate

Install Sequor

With your environment activated, install Sequor:

pip install sequor # Verify installation sequor version
💡

To exit the virtual environment when you’re done, simply type deactivate in your terminal (works on both macOS/Linux and Windows).

Upgrading Sequor

To upgrade to the latest version:

pip install --upgrade sequor

Using Sequor

Every time you want to use Sequor, you’ll need to activate the virtual environment first:

# For macOS/Linux: source ~/sequor-venv/bin/activate # For Windows: %USERPROFILE%\sequor-venv\Scripts\activate
💡

To exit the virtual environment when you’re done, simply type deactivate in your terminal (works on both macOS/Linux and Windows).

Last updated on