Easy-Acumatica
Documentation

Installation

Install Easy-Acumatica v0.5.4 via pip

Prerequisites

  • Python 3.7 or higher
  • pip package manager
  • Access to an Acumatica instance with REST API enabled
  • API credentials (username, password, tenant)

Basic Installation

Install from PyPI:

Bash
pip install easy-acumatica

Verify Installation

Check the installed version:

Bash
python -c "import easy_acumatica; print(easy_acumatica.__version__)"

Virtual Environment (Recommended)

Use a virtual environment to isolate dependencies:

Bash
# Create virtual environment
python -m venv venv

# Activate (Linux/Mac)
source venv/bin/activate

# Activate (Windows)
venv\Scripts\activate

# Install package
pip install easy-acumatica

Install Specific Version

Install a particular version:

Bash
pip install easy-acumatica==0.5.4

Development Installation

Install from source for development:

Bash
git clone https://github.com/Nioron07/Easy-Acumatica.git
cd Easy-Acumatica
pip install -e .

Next Steps

After installation, see the Quickstart Guide to begin using Easy-Acumatica.