File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -79,21 +79,25 @@ These can be installed with [homebrew](https://brew.sh/) on MacOS
7979
8080``` bash
8181brew install node
82- brew install nvm
82+ brew install nvm # Make sure to add nvm to your path
8383brew 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
8993python3 -m venv .venv
9094source .venv/bin/activate
9195```
9296
9397#### Install requirements
9498
9599``` bash
96- nvm use --lts
100+ nvm use 20
97101npm install --location=global aws-cdk
98102python3 -m pip install --upgrade pip
99103python3 -m pip install -e " .[dev,deploy,test]"
You can’t perform that action at this time.
0 commit comments