Difference between revisions of "NU32 Software"

From Mech
Jump to navigationJump to search
Line 2: Line 2:


* Text Editors
* Text Editors
** for Mac
*** [http://www.barebones.com/products/textwrangler/ TextWrangler]
** for Windows
*** [https://notepad-plus-plus.org/ Notepad++]
** for Linux
*** [https://wiki.gnome.org/Apps/Gedit Gedit]
**** Ubuntu: sudo apt-get install gedit
**** Arch: sudo pacman -S gedit
** all platforms
** all platforms
*** [http://www.vim.org/ vim]
*** [http://www.vim.org/ vim]
Line 10: Line 18:
**** Arch: sudo pacman -S emacs
**** Arch: sudo pacman -S emacs
*** [https://atom.io/ atom]
*** [https://atom.io/ atom]

** for Mac
** for Windows
*** [https://notepad-plus-plus.org/ Notepad++]
** for Linux
*** [https://wiki.gnome.org/Apps/Gedit Gedit]
**** Ubuntu: sudo apt-get install gedit
**** Arch: sudo pacman -S gedit
* Native C Compiler
* Native C Compiler
** for Mac
** for Mac

Revision as of 14:55, 10 December 2015

Software

  • Text Editors
    • for Mac
    • for Windows
    • for Linux
      • Gedit
        • Ubuntu: sudo apt-get install gedit
        • Arch: sudo pacman -S gedit
    • all platforms
      • vim
        • Ubuntu: sudo apt-get install vim
        • Arch: sudo pacman -S vim
      • emacs
        • Ubuntu: sudo apt-get install emacs
        • Arch: sudo pacman -S emacs
      • atom
  • Native C Compiler
    • for Mac
    • for Windows
      • MinGW
      • After downloading the installer:
        1. Select mingw32-base and choose "mark for installation"
        2. Select msys-base and choose "mark for installation"
        3. In the file menu select Installation->Apply Changes
    • for Linux
      • Ubuntu: sudo apt-get install build-essential
      • Arch: sudo pacman -S base-devel