The installation script creates an environment entry to the login script of the current user.
source ~/.bashrc
Install Node
# install node 18 via nvm
nvm install 18
# verify node version
node --version
# create alias against node
nvm alias default 18
Install build tools
# for Mac first time Users
xcode-select --install
# verify you have xcode cli installed
xcode-select -p
# for windows Users install build tools for windows
npm install --global --production windows-build-tools@4.0.0
Install latest version of FDK
# for new install
npm install https://cdn.freshdev.io/fdk/latest.tgz -g
# for existing Users of FDK version <9.0.0
# remove the existing version of fdk
npm uninstall fdk -g
# remove the ~/.fdk folder
rm -r ~/.fdk
# install FDK via npm
npm install https://cdn.freshdev.io/fdk/latest.tgz -g
# verify the FDK version
fdk version
Towards end of the it your output shouldbe same or higher than the listed ones
#for nvm -v
0.39.3
# for node -v
v18.15.0
# for npm -v
9.6.3
# for fdk -v
9.0.1