Skip to content

Commit ca5a23b

Browse files
author
Xing Han Lu
authored
Update README.md
Former-commit-id: bcf3f64
1 parent 0759878 commit ca5a23b

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@ environment.
1616

1717
## Downloading and running a single app
1818

19-
If you don't want to clone the entire repo, you can also download an individual app as a zip file (see the [releases](https://github.com/plotly/dash-sample-apps/releases)), decompress and run them. In the example below, replace `<name>` by the name of the app:
19+
Visit the [releases page](https://github.com/plotly/dash-sample-apps/releases) and download and `unzip` the app you want. Then `cd` into the app directory and install its dependencies in a virtual environment in the following way:
2020

2121
```bash
22-
wget https://github.com/plotly/dash-sample-apps/releases/latest/download/<name>.zip
23-
unzip <name>.zip
24-
cd <name>/
2522
python -m venv venv
2623
source venv/bin/activate # Windows: \venv\scripts\activate
2724
pip install -r requirements.txt
25+
```
26+
27+
then run the app:
28+
```bash
2829
python app.py
2930
```
3031

0 commit comments

Comments
 (0)