Skip to content

Commit

Permalink
chore: fix node installation commands in README.md
Browse files Browse the repository at this point in the history
nvm install <version> is the proper format for installing a custom version
  • Loading branch information
bevzzz committed Oct 9, 2024
1 parent 5567ff2 commit 73ea59f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
After you install `nvm`, use `nvm` to install Node.js.

```
nvm install node
nvm install
```

By default, `nvm` installs the most recent version of Node.js. Install Node.js
19.9.0 as well. Version 19.9.0 is more compatible with the current
`weaviate.io` project dependencies.

```
nvm install node 19.9.0
nvm install 19.9.0
nvm use 19.9.0
```

Expand Down

0 comments on commit 73ea59f

Please sign in to comment.