Git Product home page Git Product logo

envsetup's Introduction

Welcome to EnvSetup by HackUTD!

Table of Contents


What is this?

This tool was created to help you setup your environment for development. It will install the following languages:

  • Python
  • JavaScript (Node)
  • Java
  • C++

The following tools:

  • Homebrew (Mac) / Chocolatey (Windows)
  • Git
  • VSCode

The Interactive mode will ask you which languages you want to install. It will also ask you if you want to install the tools. This is reccomended for beginners.

The Pro mode is for advanced users, who would like more freedom in what they want to install.


Easy mode

Interactive

Mac

bash <(curl -fsSL https://raw.githubusercontent.com/salmanjaher/EnvSetup/main/interactive/mac_installer.sh)

Windows

Please run this in an elevated PowerShell prompt (Run as Administrator)

iex (iwr -Uri 'https://raw.githubusercontent.com/salmanjaher/EnvSetup/main/interactive/windows_installer.ps1' -UseBasicParsing).Content

Linux

bash <(curl -fsSL https://raw.githubusercontent.com/salmanjaher/EnvSetup/main/interactive/linux_installer.sh)

Pro

Mac

Homebrew is a package manager for Mac. It will allow you to install packages from the command line.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Git is a version control system. It will allow you to keep track of your code changes.

brew install git

VSCode is a code editor. It will allow you to write code.

brew install --cask visual-studio-code

Python is useful for many different coding applications, starting from basic web dev to complex ML.

brew install python

Node is a JavaScript runtime. It will allow you to run JavaScript code.

brew install node

Java is another basic programming language. Its not as easy to use as Python or Javascript, but it is very powerful.

brew install java

C++ is a low level programming language. It is very powerful, but also very difficult to use.

brew install gcc

Windows

Chocolatey is a package manager for Windows. It will allow you to install packages from the command line.

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex

Git is a version control system. It will allow you to keep track of your code changes.

choco install git

VSCode is a code editor. It will allow you to write code.

choco install vscode

Python is useful for many different coding applications, starting from basic web dev to complex ML.

choco install python

Node is a JavaScript runtime. It will allow you to run JavaScript code.

choco install nodejs

Java is another basic programming language. Its not as easy to use as Python or Javascript, but it is very powerful.

choco install jdk8

C++ is a low level programming language. It is very powerful, but also very difficult to use.

choco install mingw

Linux

Git is a version control system. It will allow you to keep track of your code changes.

sudo apt install git

VSCode is a code editor. It will allow you to write code.

sudo snap install --classic code

Python is useful for many different coding applications, starting from basic web dev to complex ML.

sudo apt install python3

Node is a JavaScript runtime. It will allow you to run JavaScript code.

sudo apt install nodejs

Java is another basic programming language. Its not as easy to use as Python or Javascript, but it is very powerful.

sudo apt install default-jdk

C++ is a low level programming language. It is very powerful, but also very difficult to use.

sudo apt install build-essential

envsetup's People

Contributors

salmanjaher avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.