Skip to content

Commit dd864fd

Browse files
authored
docs: minor readme update (#470)
Some minor setup changes I needed to run veda-backend locally
2 parents 28424ff + 33abdea commit dd864fd

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,21 +79,25 @@ These can be installed with [homebrew](https://brew.sh/) on MacOS
7979

8080
```bash
8181
brew install node
82-
brew install nvm
82+
brew install nvm # Make sure to add nvm to your path
8383
brew install jq
84+
nvm install 20 # .github/workflows/pr.yml uses node version 20
8485
```
8586

8687
#### Virtual environment example
8788

8889
```bash
90+
# `pipes` package required by the `fire` package deprecated in python >3.11
91+
pyenv install 3.11
92+
pyenv shell 3.11
8993
python3 -m venv .venv
9094
source .venv/bin/activate
9195
```
9296

9397
#### Install requirements
9498

9599
```bash
96-
nvm use --lts
100+
nvm use 20
97101
npm install --location=global aws-cdk
98102
python3 -m pip install --upgrade pip
99103
python3 -m pip install -e ".[dev,deploy,test]"

0 commit comments

Comments
 (0)