Switch to unified view

a/README.markdown b/README.markdown
...
...
37
    ~$ sudo aptitude install python-setuptools
37
    ~$ sudo aptitude install python-setuptools
38
    ~$ sudo easy_install -U virtualenv
38
    ~$ sudo easy_install -U virtualenv
39
39
40
Once you have virtualenv installed, you need to create a virtual environment.  We'll call our Forge environment 'anvil'.
40
Once you have virtualenv installed, you need to create a virtual environment.  We'll call our Forge environment 'anvil'.
41
41
42
    ~$ virtualenv anvil
42
    ~$ virtualenv --system-site-packages anvil
43
43
44
This gives us a nice, clean environment into which we can install all the forge dependencies.  In order to use the virtual environment, you'll need to activate it.  You'll need to do this whenever you're working on the Forge codebase so you may want to consider adding it to your `~/.bashrc` file.
44
This gives us a nice, clean environment into which we can install all the forge dependencies.  In order to use the virtual environment, you'll need to activate it.  You'll need to do this whenever you're working on the Forge codebase so you may want to consider adding it to your `~/.bashrc` file.
45
45
46
    ~$ . anvil/bin/activate
46
    ~$ . anvil/bin/activate
47
47