File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -101,11 +101,13 @@ in `Makefile`).
101
101
# Create and activate a virtual environment
102
102
python -m venv venv
103
103
source venv/bin/activate
104
+ # update the version of pip, setuptools, and wheel
105
+ (venv) pip -U pip setuptools wheel
104
106
# Install the dependencies in your virtual environment
105
- (venv) python -mpip install .[all]
107
+ (venv) pip install .[all]
106
108
# Create the HTML to visualize locally
107
109
(venv) make html
108
- (venv) firefox _build/index.html
110
+ (venv) open _build/index.html
109
111
# Or you can start a serve that watches for local file changes
110
112
(venv) make watch
111
113
# Open <http://localhost:8000/> in your browser
Original file line number Diff line number Diff line change @@ -54,11 +54,12 @@ environment:
54
54
55
55
$ python -m venv venv
56
56
$ source venv/bin/activate
57
+ $ (venv) pip install -U pip setuptools wheel
57
58
$ (venv) pip install cwltool
58
59
```
59
60
60
61
``` {note}
61
- You can find the `cwl-runner` source code [here](https://github.com/common-workflow-language/cwltool/tree/main/cwlref-runner).
62
+ You can find the `cwl-runner` source code [here](https://github.com/common-workflow-language/cwltool/tree/main/cwlref-runner).
62
63
Visit the `cwltool` [documentation](https://github.com/common-workflow-language/cwltool#install)
63
64
for other ways to install `cwltool` with `apt` and `conda`.
64
65
```
You can’t perform that action at this time.
0 commit comments