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

Update INSTALLATION.md #52

Merged
merged 1 commit into from
Aug 2, 2023
Merged
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
11 changes: 6 additions & 5 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ git clone https://github.com/hummingbot/dashboard.git
cd dashboard
```

3. Run conda command to create an isolated `conda` environment and install dependencies
3. Run command to create an isolated `conda` environment and install dependencies
```
conda env create -f environment_conda.yml
make env_create
```

4. Activate the isoldated 'conda' environment
4. Activate the isolated 'conda' environment
```bash
conda activate dashboard
```
Expand Down Expand Up @@ -58,9 +58,10 @@ unlink data

## Updating Dependencies

To update the `dashboard` environment for new dependencies, run:
To update the `dashboard` environment for changes to dependencies defined in `environment.yml`, remove the environment and re-create it:
```
conda env update -f environment_conda.yml
make env_remove
make env_create
```

To updated the `dashboard` source for latest version, run:
Expand Down