Installation Guide
This guide will help you install and set up the OpenMISP in your environment.
Installation Methods
Using pip
The recommended way to install OpenMISP is using pip:
From Source
To install from source:
Configuration
Environment Variables
OpenMISP can be configured using environment variables:
Alternatively, you can create a .env
file:
Verifying Installation
You can verify your installation by running:
import os
from openmisp import MISP
# Initialize the MISP client
misp = MISP(
url=os.getenv("MISP_URL"),
key=os.getenv("MISP_KEY"),
ssl=False, # Set to True in production environments
)
# This should print your MISP instance version
version = misp.server.version()
print(f"MISP Version: {version}")
Next Steps
- Check out the Quick Start Guide to begin using OpenMISP
- Review the API Reference for detailed information about available features
- Try the Basic Usage Examples