Skip to content

Zeta

You can install zeta with pip in a Python>=3.10 environment.

Prerequisites

Before you begin, ensure you have the following installed:

  • Python 3.10 or higher: Download Python
  • pip (specific version recommended): pip >= 21.0
  • git (for cloning the repository): Download Git

Installation Options

Headless Installation

The headless installation of zeta is designed for environments where graphical user interfaces (GUI) are not needed, making it more lightweight and suitable for server-side applications.

pip install zetascale
  1. Clone the repository and navigate to the root directory:

    git clone https://github.com/kyegomez/zeta.git
    cd zeta
    
  2. Setup Python environment and activate it:

    python3 -m venv venv
    source venv/bin/activate
    pip install --upgrade pip
    
  3. Install zeta:

    • Headless install:

      pip install -e .
      
    • Desktop install:

      pip install -e .[desktop]
      
  1. Create and activate an Anaconda environment:

    conda create -n zeta python=3.10
    conda activate zeta
    
  2. Clone the repository and navigate to the root directory:

    git clone https://github.com/kyegomez/zeta.git
    cd zeta
    
  3. Install zeta:

    • Headless install:

      pip install -e .
      
    • Desktop install:

      pip install -e .[desktop]
      
  1. Clone the repository and navigate to the root directory:

    git clone https://github.com/kyegomez/zeta.git
    cd zeta
    
  2. Setup Python environment and activate it:

    poetry env use python3.10
    poetry shell
    
  3. Install zeta:

    • Headless install:

      poetry install
      
    • Desktop install:

      poetry install --extras "desktop"