-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVM Install.txt
More file actions
45 lines (28 loc) · 1.84 KB
/
VM Install.txt
File metadata and controls
45 lines (28 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
========================
Vagrant Python-dev Setup
========================
These are the instruction for creating a simple Python development environment using a virtual machine. The virtual machine will reside within your pc.
Please note that the virtual machine uses the Ubuntu operating system. You will note that the system uses a command line interface rather than a GUI.
This interface is typical of Python development environments. If you wish to add a GUI you can look into using the GNU Gnome GUI. Once you have completed the
installation you will be able to invoke Python from the command prompt by entering the word "python".
I will continue to enhance this installation with additional pyhon development tools.
The instructions assume you are working in MS Windows on your PC. If you are using a diffent os your instructions may vary
Installing
==========
1. Install Vagrant: http://vagrantup.com
2. Install Virtualbox: http://wwww.freewareupdate.com DO NOT INSTALL THE LATEST VERSION OF THE SOFTWARE. Install version 4.1.22
(latest version os not compatible wih the Vagrant softwareas of the writing 20-Sep-2012).
3. Install the Virtual machine (in vagrant parlance this is called the "box")::
$ vagrant box add lucid32 http://files.vagrantup.com/lucid32.box
4. Clone the Github repository and run!::
$ git clone git://github.com/udacians/PythonDevEnvironment.git ossdev
$ cd ossdev
$ vagrant up
Using
=====
1. Once its all setup, you can get the IP address and port of your VM via::
$ vagrant ssh
2. Now invoke PuTTY to access your VM. When PuTTY asks for the ip address and port use the information that you got from the prior
step. PuTTY can be downloaded from http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
If at any point the VM needs to be restarted simply invoke
$ vagrant up