Skip to content

Installation

milisp edited this page Oct 23, 2024 · 1 revision

Installation

Installing Panars is simple and straightforward. You can install it using pip, the Python package installer.

Requirements

  • Python 3.7 or higher
  • pip (Python package installer)

Installation Steps

  1. Open your terminal or command prompt.
  2. Run the following command:
pip install panars
  1. Verify the installation by running:
python -c "import panars as pa; print(pa.__version__)"

This should print the version number of Panars if the installation was successful.

Upgrading Panars

To upgrade to the latest version of Panars, use the following command:

pip install --upgrade panars

Installing from Source

If you want to install the latest development version, you can install directly from the GitHub repository:

pip install git+https://github.com/milisp/panars.git

Note that the development version may be unstable and is not recommended for production use.

Clone this wiki locally