-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa7cac7
commit 9b03ed7
Showing
4 changed files
with
319 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: Assets | ||
--- | ||
|
||
# Assets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
--- | ||
title: "Installing Dagster" | ||
description: "Learn how to install Dagster" | ||
--- | ||
|
||
# Installing Dagster Guide | ||
|
||
This guide will walk you through the steps to install Dagster, a data orchestrator for machine learning, analytics, and ETL. Follow the instructions below to get started with Dagster on your local machine. | ||
|
||
|
||
<details> | ||
<summary>Prerequisites</summary> | ||
|
||
Before you begin, ensure you have the following prerequisites installed on your system: | ||
|
||
- Python 3.7 or higher, Python 3.11 is recommended | ||
- pip (Python package installer) | ||
|
||
</details> | ||
|
||
## Setup a Virtual Environment | ||
|
||
After installing Python, it's a good idea to setup a virtual environment to isolate your Dagster project from the rest of your system. | ||
|
||
There are many ways to setup a virtual environment. One method that requires no | ||
additional dependencies is to use `venv`. | ||
|
||
```bash | ||
python -m venv .venv | ||
source .venv/bin/activate | ||
``` | ||
|
||
`pyenv` and `pyenv-virtualenv` are more powerful tools that can help you manage multiple versions of Python on a single machine. You can learn more about them [here](https://github.com/pyenv/pyenv). | ||
|
||
## Install Dagster | ||
|
||
To install Dagster in your virtual environment, open your terminal and run the following command: | ||
|
||
```bash | ||
pip install dagster dagster-webserver | ||
``` | ||
|
||
This command will install the core Dagster library and the webserver, which is used to serve the Dagster UI. | ||
|
||
|
||
## Verify Installation | ||
|
||
To verify that Dagster is installed correctly, you can run the following command: | ||
|
||
```bash | ||
dagster --version | ||
``` | ||
|
||
You should see the version numbers of Dagster printed in the terminal. | ||
|
||
```bash | ||
> dagster --version | ||
dagster, version 1.7.6 | ||
``` | ||
|
||
If you see `dagster, version 1!0+dev`, then you have the development version of Dagster | ||
installed. You can choose to install the latest stable version by providing a version | ||
to the `pip install` command. | ||
|
||
For example, to install version 1.7.6, you can run: | ||
|
||
```bash | ||
pip install 'dagster==1.7.6' | ||
``` | ||
|
||
## Conclusion | ||
|
||
Congratulations! You have successfully installed Dagster | ||
|
||
## Troubleshooting | ||
|
||
If you encounter any issues during the installation process, please refer to the [Dagster GitHub repository](https://github.com/dagster-io/dagster) for troubleshooting or reach out to the Dagster community for further assistance. | ||
|
||
## Next Steps | ||
|
||
- [Quickstart Tutorial](/tutorial/quick-start) | ||
- [ETL Tutorial](/tutorial/tutorial-etl) | ||
- [Create a new Dagster project](/tutorial/create-new-project) | ||
- [Creating Data Assets](/guides/data-assets/creating-data-assets) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.