Posts Software installations for LING123
Post
Cancel

Software installations for LING123

LING123: Language and Computers contains a significant amount of shell-scripting in Linux. If you are using MacOS (or a Linux OS for that matter), you already have access to a compatible shell. Just open the terminal window and you’re ready!

Those of you who are on Windows, however, will need to install a compatible Linux terminal environment (a.k.a “shell”). This can be a bit tricky for some, so I’ve provided you all with a short guide. If you run into any problems you can’t solve through Googling, I will be available to help you in the first few lab sessions.

You will also be required to install Python 3, R + RStudio and jflap through the extent of this course.

You may also feel free to install and get familiar with a text editor or IDE, such as Atom, Emacs, Spyder, Visual Studio Code or PyCharm. They aren’t strictly necessary to complete this course, but they’ll make your life a little (or a lot!) easier when writing longer scripts later in the semester.

Installing a compatible Linux terminal environment (“shell”) on a Windows computer

Setting up the shell

Windows does not provide a (ba)sh-compatible shell, and one must install one.

For those using Windows 10:

  • For Windows 10, the easiest solution is to enable Windows Subsystem for Linux (WSL) and install a Linux distribution (e.g. Ubuntu 20.04 LTS) from the Microsoft Store. This provides you with both a terminal, the needed commands, and a full (terminal) Linux environment within Windows.
  • Some very important things to note during installation are:
  • You must remember the password you gave during installation. You will need this to update the system or to install packages. PS: When you are prompted by the terminal to enter your password, it doesn't show you what you are typing. So try not to make any typos... :)
  • The home directory in the Linux terminal and your Windows system are not the same, as the Linux filesystem is separated from the Windows one.

We will go through the commands for navigating the Linux filesystem in the first few labs.

To install WSL, please follow Microsoft’s own installation guide here. As a part of the installation, you will be asked to install a Linux distribution of your choice (step 6). I recommend Ubuntu 20.04 LTS (Long Term Support), but you can also choose something else if you already have a preference.

For those using an older version of Windows:

WSL is only available for Windows 10, and as such, those using older versions must install other programs to be able to follow the course. There are multiple things to choose from (installing all packages manually, Cygwin, MSYS2), but I recommend using MSYS2. It is available for download here.

MSYS2 Post-install: After the installation, open the “MSYS2 MSYS” application.
         Run this command to update MSYS: pacman -Syu
         Ensure that the following commands are available: awk, grep, wc
         If they aren’t, you can install them: pacman -S coreutils gawk grep

This post is licensed under CC BY 4.0 by the author.