Provision an instance of Ubuntu Linux with software to be a Python development environment.
The instructions assume you will provision a virtual machine with Ubuntu Linux.
Open a browser and navigate to http://www.ubuntu.com. Download the iso for the version of Ubuntu desktop you want to install.
Using the virtualization product you want to use, create a VM and install Ubuntu on it. Suggest using pythondev
as the administrator userid and password.
Start the VM and ensure it has a connection to the Internet. Apply any available system updates. Use the Software Updater icon that appears in the Unity launcher or open a Terminal and apply updates using the command line:
sudo apt-get -y update
sudo apt-get -y -f dist-upgrade
Install git.
sudo apt-get install git
With git installed, you can load this provisioning project on the new instance:
cd
git clone https://github.com/neopragma/provision-python-dev-ubuntu
Run the setup script.
cd ~/provision-python-dev-ubuntu
./setup
The last thing the setup script does is to run a script named verify. Check the output from verify and see if any of the installation steps failed. If so, investigate and resolve the problems. If you discover a problem with the setup script, fix it and make a pull request.