Skip to content

Commit f28e3fb

Browse files
authored
Merge pull request #5919 from sisp/docs/dev-setup
Update development environment setup documentation
2 parents 9bdc65f + 63fdbb1 commit f28e3fb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/customization.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ Next, create a new [Python virtual environment][venv] and
248248
[activate][venv-activate] it:
249249

250250
```
251-
python -m venv .venv
252-
source .venv/bin/activate
251+
python -m venv venv
252+
source venv/bin/activate
253253
```
254254

255255
[venv]: https://docs.python.org/3/library/venv.html
@@ -268,7 +268,7 @@ Finally, install the [Node.js] LTS version into the Python virtual environment
268268
and install all Node.js dependencies:
269269

270270
```
271-
python -m nodeenv -p -n lts
271+
nodeenv -p -n lts
272272
npm install
273273
```
274274

@@ -310,7 +310,7 @@ npm run build # (1)!
310310
1. While this command will build all theme files, it will skip the overrides
311311
used in Material for MkDocs' own documentation which are not distributed
312312
with the theme. If you forked the theme and want to build the overrides
313-
as well, use:
313+
as well, e.g. before submitting a PR with changes, use:
314314

315315
```
316316
npm run build:all

0 commit comments

Comments
 (0)