Skip to content

Instantly share code, notes, and snippets.

@immontilla
Created February 7, 2019 10:57
Show Gist options
  • Save immontilla/5bc67ceade8729182402445d3cffd530 to your computer and use it in GitHub Desktop.
Save immontilla/5bc67ceade8729182402445d3cffd530 to your computer and use it in GitHub Desktop.
IBM API Connect on Ubuntu-Windows 10
#Add nodeJS repository
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
#Add yarn repository
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update
#Install dev dependencies
sudo apt-get install gcc g++ make
#Install nodeJS & yarn
sudo apt-get install nodejs yarn
#npm configuration
npm config set prefix ~/npm
npm config -g set strict-ssl false
#Install IBM API Connect
npm install -g apiconnect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment