Instalation

Plutus Terminal is an open-source Python package with multiple dependencies. You can install it by downloading the PyApp executable, using pipx, or building it with Poetry.

Github Page: https://github.com/plutus-terminal/plutus-terminal

Installation using PyApp executable

To install

Download the plutus-terminal executable from the Releases page and run it directly.

If the installation fails, run from terminal to and read log errors:

<plutus_terminal_executable>

To update

From the terminal run:

<plutus_terminal_executable> self update

To uninstall

<plutus_terminal_executable> self remove

Requirements

- On Windows:

  • Git

  • Microsoft C++ Build Tools

- On Linux:

  • Git

  • libxcb-cursor-dev

Installation using pipx

To install

pipx install plutus-terminal

Run with:

plutus-terminal

To update

pipx upgrade plutus-terminal

To uninstall

pipx uninstall plutus-terminal
Build with poetry

To install

First, clone the repository:

git clone https://github.com/plutus-terminal/plutus-terminal.git

Navigate to the cloned repository:

cd plutus-terminal

Checkout the main branch:

git checkout main

Then, install the package:

poetry install

Run the tool with:

poetry run plutus-terminal

To update

git pull
poetry update

Last updated