Last active
November 6, 2018 19:58
-
-
Save thaylongs/3ddc5ef17af42df8956dee171453b8a9 to your computer and use it in GitHub Desktop.
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
mkdir ~/Softwares/ -p | |
cd ~/Softwares/ | |
echo "Instalando Softwares Basicos" | |
sudo apt install unzip unp unrar python-pip python3-pip net-tools -y | |
echo "Instalando Visual Studio Code" | |
sudo apt update | |
sudo apt install curl | |
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ | |
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list' | |
sudo apt-get install apt-transport-https -y | |
sudo apt-get update | |
sudo apt-get install code -y | |
echo "Instalando o JAVA" | |
sudo apt install openjdk-8-jdk -y | |
echo 'export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64/"' >> ~/.bashrc | |
echo "Instalando Jetbrains IDEs" | |
wget https://download-cf.jetbrains.com/toolbox/jetbrains-toolbox-1.11.4269.tar.gz | |
tar xvzf jetbrains-toolbox-1.11.4269.tar.gz | |
rm jetbrains-toolbox-1.11.4269.tar.gz | |
./jetbrains-toolbox-1.11.4269/jetbrains-toolbox | |
echo "Instalando Netbeans" | |
wget https://download.netbeans.org/netbeans/8.2/final/bundles/netbeans-8.2-linux.sh | |
sudo sh netbeans-8.2-linux.sh | |
rm netbeans-8.2-linux.sh | |
echo "Instalando Node" | |
sudo apt install nodejs npm -y | |
sudo npm install -g eslint | |
echo "Instalando Yarn" | |
curl -sS 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 && sudo apt-get install yarn | |
echo "Instalando Maven" | |
sudo apt install maven | |
echo "Instalando Gradle" | |
wget https://services.gradle.org/distributions/gradle-4.10.2-all.zip | |
unp gradle-4.10.2-all.zip | |
rm gradle-4.10.2-all.zip | |
cd gradle-4.10.2/bin | |
echo 'export PATH=$PATH:'$PWD'' >> ~/.bashrc | |
echo "Instalando DBEVER" | |
wget https://dbeaver.io/files/dbeaver-ce_latest_amd64.deb | |
sudo dpkg -i dbeaver-ce_latest_amd64.deb | |
rm dbeaver-ce_latest_amd64.deb | |
echo "Instalando Apache Drill" | |
wget http://ftp.unicamp.br/pub/apache/drill/drill-1.14.0/apache-drill-1.14.0.tar.gz | |
unp apache-drill-1.14.0.tar.gz | |
rm apache-drill-1.14.0.tar.gz | |
echo "Instalando Apache Hadoop" | |
wget http://mirror.nbtelecom.com.br/apache/hadoop/common/hadoop-3.1.1/hadoop-3.1.1.tar.gz | |
unp hadoop-3.1.1.tar.gz | |
rm hadoop-3.1.1.tar.gz | |
echo "Instalando Apache Scikit-Learn" | |
pip install -U scikit-learn | |
echo "Instalando Visual Code Plugins" | |
code --install-extension robertohuertasm.vscode-icons | |
code --install-extension ms-python.python | |
code --install-extension HookyQR.beautify | |
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension eg2.tslint | |
code --install-extension octref.vetur | |
code --install-extension EditorConfig.EditorConfig | |
code --install-extension hollowtree.vue-snippets |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment