Skip to content

Commit e2f7884

Browse files
authored
Merge pull request #1404 from emilhe/patch-1
Update CONTRIBUTING.md
2 parents 9ea1710 + e78f440 commit e2f7884

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Diff for: CONTRIBUTING.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ Glad that you decided to make your contribution in Dash, to set up your developm
99
$ git clone https://github.com/plotly/dash
1010
$ cd dash
1111
$ python3 -m venv .venv/dev
12-
# activate the virtualenv (on windows .venv\dev\scripts\activate)
13-
$ . .venv/dev/bin/activate
12+
# activate the virtualenv
13+
# on windows `.venv\dev\scripts\activate`
14+
# on some linux / mac environments, use `.` instead of `source`
15+
$ source .venv/dev/bin/activate
1416
# install dash and dependencies
1517
$ pip install -e .[testing,dev] # in some shells you need \ to escape []
1618
$ cd dash-renderer
@@ -23,7 +25,7 @@ $ pip install -e .
2325
# build and install components used in tests
2426
$ cd .. # should be back in dash/ root directory
2527
$ npm install
26-
$ npm run setup-tests
28+
$ npm run setup-tests.py # or npm run setup-tests.R
2729
# you should see both dash and dash-renderer are pointed to local source repos
2830
$ pip list | grep dash
2931
```

0 commit comments

Comments
 (0)