Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dagster-university] update pip install quoting #27127

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Then, run the following in the command line to rename the `.env.example` file a
```bash
cd dagster-and-dbt
cp .env.example .env
pip install -e ".[dev]"
pip install -e .[dev]
```

The `e` flag installs the project in editable mode so you can modify existing Dagster assets without having to reload the code location. This allows you to shorten the time it takes to test a change. However, you’ll need to reload the code location in the Dagster UI when adding new assets or installing additional dependencies.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Next, set up the default environment variables and install the project’s Pytho
```shell
cd dagster_university
cp .env.example .env
pip install -e ".[dev]"
pip install -e .[dev]
```

The `-e` flag installs the project in editable mode, which will improve your development experience by shortening how long it takes to test a change. The main exceptions are when you're adding new assets or installing additional dependencies.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ pip --version
To install Dagster into your current Python environment:

```shell
pip install 'dagster~=1.9'
pip install dagster~=1.9
```
Loading