Add pull-update instructions to README

This commit is contained in:
Kane York 2013-03-10 12:14:16 -07:00
parent 136d35a85a
commit 008042502a

View File

@ -11,6 +11,10 @@ Clone MCEdit:
```bash ```bash
git clone --recursive https://github.com/mcedit/mcedit git clone --recursive https://github.com/mcedit/mcedit
``` ```
Or, if you've already cloned MCEdit in the past and need to update, go to the existing source folder:
```bash
git pull --recurse-submodules
```
Optionally (but highly recommended), setup and activate [virtualenv](http://pypi.python.org/pypi/virtualenv). virtualenv will simplify development by creating an isolated and barebones Python environment. Anything you install while virtualenv is active won't affect your system-wide Python installation, for example. Optionally (but highly recommended), setup and activate [virtualenv](http://pypi.python.org/pypi/virtualenv). virtualenv will simplify development by creating an isolated and barebones Python environment. Anything you install while virtualenv is active won't affect your system-wide Python installation, for example.