Skip to main content

Installation & Setup

Detailed Setup

For comprehensive installation instructions, environment setup, and troubleshooting, see the Getting Started Guide page in our Nexla SDK guides.

Prerequisites

The Nexla SDK requires Python 3.9 or higher. Head over to Python.org for instructions on setting up Python in your development environment.

Install

Install the Nexla SDK using pip:

Install Nexla SDK
pip install nexla-sdk

That's it! You now have the latest Nexla SDK in your machine.

You can verify SDK installation using below command

Check SDK installation
import nexla_sdk
print(f"Nexla SDK version: {nexla_sdk.__version__}")
Sample Output
Nexla SDK version: 0.1.8

Uninstall

Run the following command if you wish to uninstall Nexla SDK:

Uninstall Nexla SDK
pip uninstall nexla-sdk

Upgrade

To upgrade the SDK version, simply uninstall the version you have and then install the latest version:

Upgrade Nexla SDK
pip uninstall nexla-sdk
pip install nexla-sdk

Development Installation

For development with additional dependencies:

Development Installation
pip install nexla-sdk[dev]

Next Steps