How to Install dagster in Python
Dagster is an orchestration platform for the development, production, and observation of data assets.
pip install dagster
What is dagster?
Dagster is an orchestration platform for the development, production, and observation of data assets.
Dagster is a cloud-native data pipeline orchestrator for the whole development lifecycle, with integrated lineage and observability, a declarative programming model, and best-in-class testability.
It is designed for developing and maintaining data assets, such as tables, data sets, machine learning models, and reports.
With Dagster, you declare—as Python functions—the data assets that you want to build. Dagster then helps you run your functions at the right time and keep your assets up-to-date.
Quick Start
Minimal example to get started with dagster:
import dagster
print(dagster.__version__)
Installation
pip (standard)
pip install dagster
Virtual environment (recommended)
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install dagster
pip3
pip3 install dagster
conda
conda install -c conda-forge dagster
Poetry
poetry add dagster
Dependencies
Installing dagster will also install these packages:
Verify the Installation
After installing, confirm the package is available:
python -c "import dagster; print(dagster.__version__)"
If this prints a version number, installation succeeded. If you see a ModuleNotFoundError, see the errors section below.
Installation Errors
Common errors when installing dagster with pip.
ModuleNotFoundError: No module named 'dagster'
Cause: The package is not installed in the current Python environment.
Fix: Run pip install dagster. If using a virtual environment, ensure it is activated first.
ModuleNotFoundError: No module named 'dagster' (installed but still failing)
Cause: pip installed the package into a different Python than the one running your script.
Fix: Use python -m pip install dagster to install into the interpreter you are running.
ImportError: cannot import name 'X' from 'dagster'
Cause: The function or class does not exist in the installed version.
Fix: Check the version with pip show dagster and upgrade with pip install --upgrade dagster.
pip: command not found
Cause: pip is not in PATH or Python was not added to PATH during installation.
Fix: Try python -m pip install dagster. On macOS/Linux try pip3.
PermissionError: [Errno 13] Permission denied
Cause: No write access to the system Python package directory.
Fix: Use a virtual environment, or add --user: pip install --user dagster
SSL: CERTIFICATE_VERIFY_FAILED
Cause: pip cannot verify PyPI's SSL certificate — common behind corporate proxies.
Fix: Try: pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org dagster
Recent Releases
| Version | Released |
|---|---|
1.13.0 latest |
2026-04-09 |
1.12.22 |
2026-04-02 |
1.12.21 |
2026-03-26 |
1.12.20 |
2026-03-19 |
1.12.19 |
2026-03-12 |
Manage dagster
Upgrade to latest version
pip install --upgrade dagster
Install a specific version
pip install dagster==1.13.0
Uninstall
pip uninstall dagster
Check what is installed
pip show dagster