Releases: practicusai/app
Release list
v26.4.1
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.msixpackage 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
practicusmacOS & 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
practicusUsing 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
practicusmacOS & 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
practicusLinux 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-devEnjoy!
v26.4.0
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.msixpackage 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
practicusmacOS & 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
practicusUsing 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
practicusmacOS & 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
practicusLinux 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-devEnjoy!
v25.5.3
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.msixpackage 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
practicusmacOS & 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
practicusUsing 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
practicusmacOS & 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
practicusLinux 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-devEnjoy!
v25.5.2
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.msixpackage 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
practicusmacOS & 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
practicusUsing 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
practicusmacOS & 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
practicusLinux 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-devEnjoy!
v25.5.1
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.msixpackage 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
practicusmacOS & 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
practicusUsing 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
practicusmacOS & 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
practicusLinux 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-devEnjoy!
v25.5.0
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
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
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
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
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!