-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
milisp edited this page Oct 23, 2024
·
1 revision
Installing Panars is simple and straightforward. You can install it using pip, the Python package installer.
- Python 3.7 or higher
- pip (Python package installer)
- Open your terminal or command prompt.
- Run the following command:
pip install panars- 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.
To upgrade to the latest version of Panars, use the following command:
pip install --upgrade panarsIf you want to install the latest development version, you can install directly from the GitHub repository:
pip install git+https://github.com/milisp/panars.gitNote that the development version may be unstable and is not recommended for production use.