Skip to content

Releases: practicusai/app

v26.4.1

v26.4.1 Pre-release
Pre-release

Choose a tag to compare

@practicusai practicusai released this 15 Apr 18:26
8b25c02

Practicus AI Studio

You can install Practicus AI Studio using a standalone package or from the command line using uv or pip.


1. Standalone App Installers (macOS & Windows) 📦

This is the easiest way to get started and does not require a separate Python installation. You can download the latest installer packages from the Assets section of this release.

  • macOS:

    • practicus-studio-arm.pkg: For Apple Silicon macOS.
    • practicus-studio.pkg: For Intel or Universal macOS.
    • Our packages are signed and notarized by Apple.
  • Windows:

    • We recommend installing from the Microsoft Store to get automatic updates.
    • For offline installation, use the practicus-studio.msix package from the Assets section.
    • Our package is digitally signed for Microsoft.

2. Command-Line Install (All Platforms) 🐍

For users who prefer a command-line setup, we recommend using uv, a next-generation Python package manager that is extremely fast and reliable.

Using uv (Recommended)

Windows

:: 1. Install uv and restart terminal
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

:: 2. Create environment and install practicus
uv venv %UserProfile%\practicus\venv --python 3.10
call %UserProfile%\practicus\venv\Scripts\activate.bat
uv pip install --upgrade practicus

:: 3. Run
call %UserProfile%\practicus\venv\Scripts\activate.bat
practicus

macOS & Linux

# 1. Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh

# 2. Create environment and install practicus
uv venv ~/practicus/venv --python 3.10
source ~/practicus/venv/bin/activate
uv pip install --upgrade practicus

# 3. Run
source ~/practicus/venv/bin/activate
practicus

Using pip with Python 3.10 (Alternative)

If you prefer to use pip with Python 3.10, you can follow these instructions. We strongly recommend using a virtual environment to avoid conflicts with other packages.

Windows

:: Create and activate a virtual environment
python -m venv %UserProfile%\practicus\venv
%UserProfile%\practicus\venv\Scripts\activate

:: Install or upgrade practicus
pip install --upgrade practicus

:: Run the app
practicus

macOS & Linux

# Create and activate a virtual environment
python3 -m venv ~/practicus/venv
source ~/practicus/venv/bin/activate

# Install or upgrade practicus
pip install --upgrade practicus

# Run the app
practicus

Linux Gnome user?

# Since Practicus AI is a QT C++ application,
# if you get qt.qpa.plugin error please run:
sudo apt-get install \
  '^libxcb.*-dev' libx11-xcb-dev \
  libglu1-mesa-dev libxrender-dev \
  libxi-dev libxkbcommon-dev \
  libxkbcommon-x11-dev

Enjoy!

v26.4.0

Choose a tag to compare

@practicusai practicusai released this 25 Mar 13:56
8b25c02

Practicus AI Studio

You can install Practicus AI Studio using a standalone package or from the command line using uv or pip.


1. Standalone App Installers (macOS & Windows) 📦

This is the easiest way to get started and does not require a separate Python installation. You can download the latest installer packages from the Assets section of this release.

  • macOS:

    • practicus-studio-arm.pkg: For Apple Silicon macOS.
    • practicus-studio.pkg: For Intel or Universal macOS.
    • Our packages are signed and notarized by Apple.
  • Windows:

    • We recommend installing from the Microsoft Store to get automatic updates.
    • For offline installation, use the practicus-studio.msix package from the Assets section.
    • Our package is digitally signed for Microsoft.

2. Command-Line Install (All Platforms) 🐍

For users who prefer a command-line setup, we recommend using uv, a next-generation Python package manager that is extremely fast and reliable.

Using uv (Recommended)

Windows

:: 1. Install uv and restart terminal
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

:: 2. Create environment and install practicus
uv venv %UserProfile%\practicus\venv --python 3.10
call %UserProfile%\practicus\venv\Scripts\activate.bat
uv pip install --upgrade practicus

:: 3. Run
call %UserProfile%\practicus\venv\Scripts\activate.bat
practicus

macOS & Linux

# 1. Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh

# 2. Create environment and install practicus
uv venv ~/practicus/venv --python 3.10
source ~/practicus/venv/bin/activate
uv pip install --upgrade practicus

# 3. Run
source ~/practicus/venv/bin/activate
practicus

Using pip with Python 3.10 (Alternative)

If you prefer to use pip with Python 3.10, you can follow these instructions. We strongly recommend using a virtual environment to avoid conflicts with other packages.

Windows

:: Create and activate a virtual environment
python -m venv %UserProfile%\practicus\venv
%UserProfile%\practicus\venv\Scripts\activate

:: Install or upgrade practicus
pip install --upgrade practicus

:: Run the app
practicus

macOS & Linux

# Create and activate a virtual environment
python3 -m venv ~/practicus/venv
source ~/practicus/venv/bin/activate

# Install or upgrade practicus
pip install --upgrade practicus

# Run the app
practicus

Linux Gnome user?

# Since Practicus AI is a QT C++ application,
# if you get qt.qpa.plugin error please run:
sudo apt-get install \
  '^libxcb.*-dev' libx11-xcb-dev \
  libglu1-mesa-dev libxrender-dev \
  libxi-dev libxkbcommon-dev \
  libxkbcommon-x11-dev

Enjoy!

v25.5.3

v25.5.3 Pre-release
Pre-release

Choose a tag to compare

@practicusai practicusai released this 01 Sep 19:24
8b25c02

Practicus AI Studio

You can install Practicus AI Studio using a standalone package or from the command line using uv or pip.


1. Standalone App Installers (macOS & Windows) 📦

This is the easiest way to get started and does not require a separate Python installation. You can download the latest installer packages from the Assets section of this release.

  • macOS:

    • practicus-studio-arm.pkg: For Apple Silicon macOS.
    • practicus-studio.pkg: For Intel or Universal macOS.
    • Our packages are signed and notarized by Apple.
  • Windows:

    • We recommend installing from the Microsoft Store to get automatic updates.
    • For offline installation, use the practicus-studio.msix package from the Assets section.
    • Our package is digitally signed for Microsoft.

2. Command-Line Install (All Platforms) 🐍

For users who prefer a command-line setup, we recommend using uv, a next-generation Python package manager that is extremely fast and reliable.

Using uv (Recommended)

Windows

:: 1. Install uv and restart terminal
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

:: 2. Create environment and install practicus
uv venv %UserProfile%\practicus\venv --python 3.10
call %UserProfile%\practicus\venv\Scripts\activate.bat
uv pip install --upgrade practicus

:: 3. Run
call %UserProfile%\practicus\venv\Scripts\activate.bat
practicus

macOS & Linux

# 1. Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh

# 2. Create environment and install practicus
uv venv ~/practicus/venv --python 3.10
source ~/practicus/venv/bin/activate
uv pip install --upgrade practicus

# 3. Run
source ~/practicus/venv/bin/activate
practicus

Using pip with Python 3.10 (Alternative)

If you prefer to use pip with Python 3.10, you can follow these instructions. We strongly recommend using a virtual environment to avoid conflicts with other packages.

Windows

:: Create and activate a virtual environment
python -m venv %UserProfile%\practicus\venv
%UserProfile%\practicus\venv\Scripts\activate

:: Install or upgrade practicus
pip install --upgrade practicus

:: Run the app
practicus

macOS & Linux

# Create and activate a virtual environment
python3 -m venv ~/practicus/venv
source ~/practicus/venv/bin/activate

# Install or upgrade practicus
pip install --upgrade practicus

# Run the app
practicus

Linux Gnome user?

# Since Practicus AI is a QT C++ application,
# if you get qt.qpa.plugin error please run:
sudo apt-get install \
  '^libxcb.*-dev' libx11-xcb-dev \
  libglu1-mesa-dev libxrender-dev \
  libxi-dev libxkbcommon-dev \
  libxkbcommon-x11-dev

Enjoy!

v25.5.2

Choose a tag to compare

@practicusai practicusai released this 04 Jul 19:44
8b25c02

Practicus AI Studio

You can install Practicus AI Studio using a standalone package or from the command line using uv or pip.


1. Standalone App Installers (macOS & Windows) 📦

This is the easiest way to get started and does not require a separate Python installation. You can download the latest installer packages from the Assets section of this release.

  • macOS:

    • practicus-studio-arm.pkg: For Apple Silicon macOS.
    • practicus-studio.pkg: For Intel or Universal macOS.
    • Our packages are signed and notarized by Apple.
  • Windows:

    • We recommend installing from the Microsoft Store to get automatic updates.
    • For offline installation, use the practicus-studio.msix package from the Assets section.
    • Our package is digitally signed for Microsoft.

2. Command-Line Install (All Platforms) 🐍

For users who prefer a command-line setup, we recommend using uv, a next-generation Python package manager that is extremely fast and reliable.

Using uv (Recommended)

Windows

:: 1. Install uv and restart terminal
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

:: 2. Create environment and install practicus
uv venv %UserProfile%\practicus\venv --python 3.10
call %UserProfile%\practicus\venv\Scripts\activate.bat
uv pip install --upgrade practicus

:: 3. Run
call %UserProfile%\practicus\venv\Scripts\activate.bat
practicus

macOS & Linux

# 1. Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh

# 2. Create environment and install practicus
uv venv ~/practicus/venv --python 3.10
source ~/practicus/venv/bin/activate
uv pip install --upgrade practicus

# 3. Run
source ~/practicus/venv/bin/activate
practicus

Using pip with Python 3.10 (Alternative)

If you prefer to use pip with Python 3.10, you can follow these instructions. We strongly recommend using a virtual environment to avoid conflicts with other packages.

Windows

:: Create and activate a virtual environment
python -m venv %UserProfile%\practicus\venv
%UserProfile%\practicus\venv\Scripts\activate

:: Install or upgrade practicus
pip install --upgrade practicus

:: Run the app
practicus

macOS & Linux

# Create and activate a virtual environment
python3 -m venv ~/practicus/venv
source ~/practicus/venv/bin/activate

# Install or upgrade practicus
pip install --upgrade practicus

# Run the app
practicus

Linux Gnome user?

# Since Practicus AI is a QT C++ application,
# if you get qt.qpa.plugin error please run:
sudo apt-get install \
  '^libxcb.*-dev' libx11-xcb-dev \
  libglu1-mesa-dev libxrender-dev \
  libxi-dev libxkbcommon-dev \
  libxkbcommon-x11-dev

Enjoy!

v25.5.1

Choose a tag to compare

@practicusai practicusai released this 23 Jun 19:53
8b25c02

Practicus AI Studio

You can install Practicus AI Studio using a standalone package or from the command line using uv or pip.


1. Standalone App Installers (macOS & Windows) 📦

This is the easiest way to get started and does not require a separate Python installation. You can download the latest installer packages from the Assets section of this release.

  • macOS:

    • practicus-studio-arm.pkg: For Apple Silicon macOS.
    • practicus-studio.pkg: For Intel or Universal macOS.
    • Our packages are signed and notarized by Apple.
  • Windows:

    • We recommend installing from the Microsoft Store to get automatic updates.
    • For offline installation, use the practicus-studio.msix package from the Assets section.
    • Our package is digitally signed for Microsoft.

2. Command-Line Install (All Platforms) 🐍

For users who prefer a command-line setup, we recommend using uv, a next-generation Python package manager that is extremely fast and reliable.

Using uv (Recommended)

Windows

:: 1. Install uv and restart terminal
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

:: 2. Create environment and install practicus
uv venv %UserProfile%\practicus\venv --python 3.10
call %UserProfile%\practicus\venv\Scripts\activate.bat
uv pip install --upgrade practicus

:: 3. Run
call %UserProfile%\practicus\venv\Scripts\activate.bat
practicus

macOS & Linux

# 1. Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh

# 2. Create environment and install practicus
uv venv ~/practicus/venv --python 3.10
source ~/practicus/venv/bin/activate
uv pip install --upgrade practicus

# 3. Run
source ~/practicus/venv/bin/activate
practicus

Using pip with Python 3.10 (Alternative)

If you prefer to use pip with Python 3.10, you can follow these instructions. We strongly recommend using a virtual environment to avoid conflicts with other packages.

Windows

:: Create and activate a virtual environment
python -m venv %UserProfile%\practicus\venv
%UserProfile%\practicus\venv\Scripts\activate

:: Install or upgrade practicus
pip install --upgrade practicus

:: Run the app
practicus

macOS & Linux

# Create and activate a virtual environment
python3 -m venv ~/practicus/venv
source ~/practicus/venv/bin/activate

# Install or upgrade practicus
pip install --upgrade practicus

# Run the app
practicus

Linux Gnome user?

# Since Practicus AI is a QT C++ application,
# if you get qt.qpa.plugin error please run:
sudo apt-get install \
  '^libxcb.*-dev' libx11-xcb-dev \
  libglu1-mesa-dev libxrender-dev \
  libxi-dev libxkbcommon-dev \
  libxkbcommon-x11-dev

Enjoy!

v25.5.0

Choose a tag to compare

@practicusai practicusai released this 22 Apr 05:25
8b25c02

Practicus AI app installer packages

You can download the latest app installer packages from the Assets section below.

macOS

practicus.pkg: Standalone app installation for macOS. Client OS does not need to have Python3 installed.

Package is signed and notarized by Apple.

Windows

Please prefer to install the Windows app using Microsoft store (below link). This will provide benefits like automated updates.
https://www.microsoft.com/en-us/p/practicus-ai/9p9f4hvkvcqg

If you need offline installation, practicus.msix is a standalone package. Client OS doesn't need Python3.

Package is digitally signed for Microsoft.

Linux

We only support pypi (pip) installation for Linux. Please visit https://docs.practicus.ai/setup-guide/#linux-installation for more information

Enjoy!

v24.8.3

Choose a tag to compare

@practicusai practicusai released this 22 Dec 22:53
8b25c02

Practicus AI app installer packages

You can download the latest app installer packages from the Assets section below.

macOS

practicus.pkg: Standalone app installation for macOS. Client OS does not need to have Python3 installed.

Package is signed and notarized by Apple.

Windows

Please prefer to install the Windows app using Microsoft store (below link). This will provide benefits like automated updates.
https://www.microsoft.com/en-us/p/practicus-ai/9p9f4hvkvcqg

If you need offline installation, practicus.msix is a standalone package. Client OS doesn't need Python3.

Package is digitally signed for Microsoft.

Linux

We only support pypi (pip) installation for Linux. Please visit https://docs.practicus.ai/setup-guide/#linux-installation for more information

Enjoy!

v24.8.2

Choose a tag to compare

@practicusai practicusai released this 11 Dec 00:53
8b25c02

Practicus AI app installer packages

You can download the latest app installer packages from the Assets section below.

macOS

practicus.pkg: Standalone app installation for macOS. Client OS does not need to have Python3 installed.

Package is signed and notarized by Apple.

Windows

Please prefer to install the Windows app using Microsoft store (below link). This will provide benefits like automated updates.
https://www.microsoft.com/en-us/p/practicus-ai/9p9f4hvkvcqg

If you need offline installation, practicus.msix is a standalone package. Client OS doesn't need Python3.

Package is digitally signed for Microsoft.

Linux

We only support pypi (pip) installation for Linux. Please visit https://docs.practicus.ai/setup-guide/#linux-installation for more information

Enjoy!

v24.8.1

Choose a tag to compare

@practicusai practicusai released this 10 Oct 01:35
8b25c02

Practicus AI app installer packages

You can download the latest app installer packages from the Assets section below.

macOS

practicus.pkg: Standalone app installation for macOS. Client OS does not need to have Python3 installed.

Package is signed and notarized by Apple.

Windows

Please prefer to install the Windows app using Microsoft store (below link). This will provide benefits like automated updates.
https://www.microsoft.com/en-us/p/practicus-ai/9p9f4hvkvcqg

If you need offline installation, practicus.msix is a standalone package. Client OS doesn't need Python3.

Package is digitally signed for Microsoft.

Linux

We only support pypi (pip) installation for Linux. Please visit https://docs.practicus.ai/setup-guide/#linux-installation for more information

Enjoy!

v24.8.0

Choose a tag to compare

@practicusai practicusai released this 31 Jul 03:23
ca0b7bf

Practicus AI app installer packages

You can download the latest app installer packages from the Assets section below.

macOS

practicus.pkg: Standalone app installation for macOS. Client OS does not need to have Python3 installed.

Package is signed and notarized by Apple.

Windows

Please prefer to install the Windows app using Microsoft store (below link). This will provide benefits like automated updates.
https://www.microsoft.com/en-us/p/practicus-ai/9p9f4hvkvcqg

If you need offline installation, practicus.msix is a standalone package. Client OS doesn't need Python3.

Package is digitally signed for Microsoft.

Linux

We only support pypi (pip) installation for Linux. Please visit https://docs.practicus.ai/setup-guide/#linux-installation for more information

Enjoy!