Skip to content

Commit db898a5

Browse files
Merge pull request #4045 from raspberrypi/lurch-patch-1
Add missing build steps to CONTRIBUTING.md
2 parents d2fdc4f + 88cf2f3 commit db898a5

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Diff for: CONTRIBUTING.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@ Use the `gem` package manager to install the [Ruby bundler](https://bundler.io/)
8888
$ gem install bundler
8989
```
9090

91+
And then install the required Ruby gems:
92+
93+
```console
94+
$ bundle install
95+
```
96+
9197
Configure a Python virtual environment for this project:
9298

9399
```console
@@ -101,12 +107,12 @@ $ source .env/bin/activate
101107
```
102108

103109
> [!TIP]
104-
> When you're using a virtual environment, you should see a `(.venv)` prefix at the start of your terminal prompt. At any time, run the `deactivate` command to exit the virtual environment.
110+
> When you're using a virtual environment, you should see a `(.env)` prefix at the start of your terminal prompt. At any time, run the `deactivate` command to exit the virtual environment.
105111
106-
In the virtual environment, install the [YAML module for Python 3](https://formulae.brew.sh/formula/pyyaml#default):
112+
In the virtual environment, install the required Python modules:
107113

108114
```console
109-
$ pip3 install pyyaml
115+
$ pip3 install -r requirements.txt
110116
```
111117

112118
### Build HTML

0 commit comments

Comments
 (0)