M1/M2 Mac dependency instructions #76
Shubham-Khichi
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Had some trouble installing dependencies with M1 M2 Macs so created a quick terminal walkthrough.
Go Installation
Go installer - https://go.dev/dl/�
Close terminal and reopen new one
NVM Installation
brew install nvm
nvm —version
nano ~/.bash_profile
Copy this at the end of the bash profile
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && . "$NVM_DIR/bash_completion" # This loads nvm$
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
*Source the file to initialize
source ~/.bash_profile
Check for NVM version
nvm --version
Install Node 19
nvm ls-remote
nvm install 19
node —version
Install poppler
brew install poppler
Beta Was this translation helpful? Give feedback.
All reactions