Step 1 Provide your github details and vanderbilt email id, your vu login name (only if you are an enrolled student in the class).
https://goo.gl/forms/6IpIuTsaqTeKRrRu1
Step 2 Read the syllabus
In the class we use a virtual environment to set up a linux machine that we use for programming assignments and examples. The virtual environment is created using virtual box. You can read more about virtual box here: https://www.virtualbox.org/manual/ch01.html.
- Download and install the latest from Oracle VirtualBox from https://www.virtualbox.org/. It is very important to get the latest version.
- Install the virtual box extension package
-
Download and install Vagrant from https://www.vagrantup.com/
-
Download and install the Vagrant plugin for VirtualBox Guest Additions. To do so simply call
vagrant plugin install vagrant-vbguest
Clone the getting started git repository.
git clone https://github.com/CS3281-2016/getting-started.git
if you do not have git on the host machine you can download the repository as a zip from here
https://github.com/CS3281-2016/getting-started/archive/master.zip
Open a shell in the directory containing the Vagrantfile
and run
vagrant up
This will take a while when you run it for the first time. Vagrant will download the base box, launch the virtual machine and install all the software required for the class.
Note Change the following entries in the Vagrantfile based on your situtation. These settings set up the memory and CPU properties of the new virtual machine. Try to setup atleast 2048 MB i.e. 2 GB for memory. More is better. If you have at least 4 cores then you can setup atleast 2 CPU. Please increase the number if you have more cores available.
config.vm.provider "virtualbox" do |vb|
# DIsplay the name of the virtualbox
vb.name = "cs281spring2017devbox"
vb.gui = true
vb.customize ["modifyvm", :id, "--memory", "2048"]
vb.customize ["modifyvm", :id, "--cpus", "2"]
vb.customize ["modifyvm", :id, "--accelerate3d", "off"]
vb.customize ['modifyvm', :id, '--clipboard', 'bidirectional']
end
Note - Please check that there were no errors during this step. Any errors might lead to the case where you will not find clion in the vm. If such an error happens, you try running vagrant reload
Note If you get errors that say that virtualization is not enabled in your PC, you might have to enable it in BIOS. This depends on your specific computer and will require you to do a search on google. For some computers the following instruction might work: https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/5/html/Virtualization/sect-Virtualization-Troubleshooting-Enabling_Intel_VT_and_AMD_V_virtualization_hardware_extensions_in_BIOS.html
When the software installation is complete, log into the VM (user and password are "vagrant").
Inside the VM, open a terminal and run
/home/vagrant/clion-2016.3.2/bin/clion.sh
It wil start the actual installation wizard for CLion.
If you want to set up desktop shortcut for clion - please see the instructions available here
https://www.jetbrains.com/help/clion/2016.3/installation-and-launching.html#desktop_shortcut
Get the student license from https://www.jetbrains.com/student/.
Follow the getting started instructions from https://www.jetbrains.com/help/clion/2016.1/quick-start-guide.html
Follow the instructions provided here
https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/
- See this quick tour video at https://www.jetbrains.com/clion/documentation/
- Read https://www.jetbrains.com/help/clion/2016.3/quick-start-guide.html
- Watch the video https://www.youtube.com/watch?v=wUZyoAnPdCY for understanding how to debug with clion
Note - As you read the quick start guide, you will realize that clion uses cmake (https://cmake.org/cmake-tutorial/) for describing the compilation and linking procedures. We will review the Cmake principles in the class.
However, in this class, we will provide you the cmake files. You will only need to edit them using the Clion GUI as shown in the quick start guide.
- Follow the instructions shown in this video https://youtu.be/V76maDEsl-8
- The examples repostiory is available here: https://github.com/CS3281-2016/examples.
- The lecture notes are located at https://github.com/CS3281-2016/lectures
You should add the lectures, getting_started and examples repository to your watch list once you have been added to the organization. Review the documentation about watching repositories at https://help.github.com/articles/watching-repositories/. Once the watch is configured you will get notifications when we push any update to the lectures or the examples repository.