Skip to content

Commit

Permalink
Merge pull request #5919 from sisp/docs/dev-setup
Browse files Browse the repository at this point in the history
Update development environment setup documentation
  • Loading branch information
squidfunk committed Sep 18, 2023
2 parents 9bdc65f + 63fdbb1 commit f28e3fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ Next, create a new [Python virtual environment][venv] and
[activate][venv-activate] it:

```
python -m venv .venv
source .venv/bin/activate
python -m venv venv
source venv/bin/activate
```

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

```
python -m nodeenv -p -n lts
nodeenv -p -n lts
npm install
```

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

```
npm run build:all
Expand Down

0 comments on commit f28e3fb

Please sign in to comment.