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:
pip install easy-acumaticaVerify Installation
Check the installed version:
python -c "import easy_acumatica; print(easy_acumatica.__version__)"Virtual Environment (Recommended)
Use a virtual environment to isolate dependencies:
# Create virtual environment
python -m venv venv
# Activate (Linux/Mac)
source venv/bin/activate
# Activate (Windows)
venv\Scripts\activate
# Install package
pip install easy-acumaticaInstall Specific Version
Install a particular version:
pip install easy-acumatica==0.5.4Development Installation
Install from source for development:
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.