Difference between revisions of "NU32 Software"

From Mech
Jump to navigationJump to search
Line 1: Line 1:
= Software =
= Software =
* Text Editors (These are just suggestions; feel free to use any text editor you are comfortable with)
* Text Editors (These are just suggestions; feel free to use any text editor you are comfortable with)
** [https://atom.io/ Atom]
** [http://www.barebones.com/products/textwrangler/ TextWrangler] (Mac)
** [http://www.barebones.com/products/textwrangler/ TextWrangler] (Mac)
** [https://notepad-plus-plus.org/ Notepad++] (Windows)
** [https://notepad-plus-plus.org/ Notepad++] (Windows)

Revision as of 13:03, 5 January 2016

Software

  • Text Editors (These are just suggestions; feel free to use any text editor you are comfortable with)
    • Atom
    • TextWrangler (Mac)
    • Notepad++ (Windows)
    • Gedit (All)
      • sudo apt-get install (Ubuntu/Debian)
      • sudo pacman -S gedit (Arch)
    • vim (All)
      • sudo apt-get install vim (Ubuntu/Debian)
      • sudo pacman -S vim (Arch)
    • emacs (All)
      • sudo apt-get install emacs (Ubuntu/Debian)
      • sudo pacman -S emacs (Arch)
    • atom (All)
  • Native C Compiler
    • Xcode Command Line Tools (Mac): Log in with an Apple developer id, available for free, and download "Command Line Tools OSX (version number) for Xcode (version number)" (about 160 MB), to avoid downloading the ~4 GB full Xcode developer suite (which also has the command line tools). You will probably need to add /Library/Developer/CommandLineTools/usr/bin to your path to make sure you find gcc and make from the command line; see the video on software downloads. (Instead of using Xcode command line tools, you could use gcc and make from Homebrew or MacPorts.)
    • MinGW (Windows)
    • gcc (Linux)
      • sudo apt-get install build-essential (Ubuntu/Debian)
      • sudo pacman -S base-devel (Arch)
  • Make
    • Distributed with Xcode (Mac)
    • Distributed with MSYS, obtained via MinGW (Windows)
    • make (Linux)
      • sudo apt-get install build-essential (Ubuntu/Debian)
      • sudo pacman -S base-devel (Arch)