Install Pyton package

OK, CAT seems cool. What do I do to start using it?

First - what do I get if I follow this?

You will have CAT properly installed, including prerequisites. You will learn basics of CAT on a simple example. You will be able to interact with CAT from your Python code - creating projects, exploring tests, running them, work with the results etc.

Python code with exmple CAT tests Use CAT seamlessly from your Python code

Because you will explore sample tests and run them in this tutorial, it will give you a rough idea what CAT can check for you on your real data. (The sample project works with supplied CSV files, but CAT supports many providers).

What do I need to follow?

If all goes smoothly, you will need 10 - 15 minutes of your time. And Python of course - but you already installed Python, right? It will be handy to have it on your machine.

On the other hand - what do you not need?

  • You do NOT need admin permissions
  • You do NOT need any license - CAT is for free when used in an interactive way (it means not for scheduled processes, CI/CD etc.), even for corporates, even for production data
  • You do NOT need to connect to your data (sample data is provided)

Prerequisites

.NET runtime (.NET 8)

This is a crucial prerequisite, but it is easy and quick to install. If you will not be able to install .NET runtime for any reason, you’ll not be able to use CAT from Python.

For MS Windows users

The easiest way to install .NET runtime is to use WinGet:

winget install Microsoft.DotNet.Runtime.8

Alternatively you can install from this web: https://dotnet.microsoft.com/en-us/download/dotnet/8.0. Find .NET RUNTIME 8.* section and download and install x64 version:

Installer for .NET runtime 8

It is simple next, next, next.

For Linux users

If you are on Linux, follow these instructions: https://learn.microsoft.com/en-us/dotnet/core/install/linux. Verify you installed correctly by running dotnet --list-runtimes.

pythonnet

pythonnet package is another (and already last one) crucial prerequisite for using CAT from Python. Install it from PyPI the same way you install other packages. E.g., for MS Windows, run

py -m pip install pythonnet

If you plan to use Python only for working with CAT, you don’t need to use environments, but in all other cases please do (nice tutorial to Python environments). Verify the pythonnet package was installed correctly. If not, do not continue.

Install CAT

CAT is distributed as a Python package. Because CAT integration with Python is a preview feature, the package is so far published only to TEST version of PyPI. That means you must install it from there:

py -m pip install -i https://test.pypi.org/simple/ datasmartly-cat --no-dependencies

What Next?

OK, you now have CAT Python package installed. In the next step, create a sample project and explore it.