Installation

Once Python is installed, stratapy can be installed using pip, the Python package manager. Open a terminal or command prompt and run the following command:

pip install stratapy

This command will download and install the latest version of stratapy from the internet (you need an active internet connection for this).

After installation, you can verify that stratapy is installed correctly by opening a Python interpreter and running:

import stratapy
print(stratapy.__version__)

This should print the version number of stratapy that you have installed.

stratapy will be updated periodically with new features and bug fixes. To update stratapy to the latest version, you can run:

pip install --upgrade stratapy

If working in a Jupyter Notebook or JupyterLab, including online platforms like Google Colab, you can install stratapy directly within a code cell by prefixing the pip command with an exclamation mark:

!pip install stratapy

You may need to restart the kernel after installation for the changes to take effect.