Setting up Your Development Environment

Let’s get the hands dirty by doing some setup. We will explain what you have done later. Just feel free to try it out for now :)

Download and Install Virtual Box and Ubuntu Linux

  1. Download and install Virtual Box.
  2. Download and add Ubuntu 64 Bit Virtual Box image into your Virtual Box. Latest version is recommended. Please refer to the web site for user name and password.

Install Kivy, Git, and PIP

  1. Start the Ubuntu. Input the username and password obtained in the last step to login. Right click desktop and choose open terminal.
  2. In the terminal, run the following command:
sudo apt-get upgrade
sudo apt-get install python-kivy
sudo apt-get install git
sudo apt-get install python-pip

Intall Pycharm IDE

  1. In your Ubuntu. Open Firefox. And download Pycharm Commnity Edition for Linux
  2. By default, it would be saved at ~/Downloads.
  3. Open terminal again. Type the following:
cd ~/Downloads
tar xvzf pycharm*.tar.gz
rm pycharm*.tar.gz
mv pycharm* ~/pycharm

Running PyCharm

  1. Open terminal.
  2. Run Pycharm in terminal by:
~/pycharm/bin/pycharm.sh

If PyCharm asked for Key binding / mappings, choose Eclipse for the sake of this course.

In the next section. You will learn about what you have just setup.