Created
October 2, 2016 08:34
-
-
Save ManojNair/91c494dd2a2ca076392f581bccbf3f3e to your computer and use it in GitHub Desktop.
To Install .Net Core / PowerShell Core and NodeJS on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list' | |
apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893 | |
apt-get update -y | |
apt-get install dotnet-dev-1.0.0-preview2-003131 -y | |
bash <(curl -fsSL https://raw.githubusercontent.com/PowerShell/PowerShell/v6.0.0-alpha.10/tools/download.sh) | |
apt-get update | |
apt-get install python-pip | |
apt-get install ruby2.0 | |
apt-get install wget | |
cd /home/ubuntu | |
wget https://aws-codedeploy-us-east-1.s3.amazonaws.com/latest/install | |
chmod +x ./install | |
./install auto | |
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
sudo apt-get install -y nodejs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment