---
title: Installation
description: Install NoLag SDKs for JavaScript, Python, and Go.
---

# Installation

Install the NoLag SDK for your preferred programming language.

## Package Managers

```typescript [npm]
npm install @nolag/js-sdk
```
```python [pip]
pip install nolag
```
```go [go get]
go get github.com/NoLagApp/nolag-go
```

## Alternative Package Managers

```typescript [yarn]
yarn add @nolag/js-sdk
```
```python [poetry]
poetry add nolag
```
```go [go mod]
go mod tidy
```

## Requirements

### JavaScript/TypeScript

- Node.js 18 or later
- TypeScript 4.7+ (for TypeScript projects)
- Works in browsers and Node.js

### Python

- Python 3.10 or later
- asyncio support required

### Go

- Go 1.21 or later

## Next Steps

- [Set up Authentication](/docs/authentication)
- [Quick Start Guide](/docs/getting-started)
