From 008042502a18846bff1c27a5af6484a51f43075c Mon Sep 17 00:00:00 2001 From: Kane York Date: Sun, 10 Mar 2013 12:14:16 -0700 Subject: [PATCH] Add pull-update instructions to README --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 91c794e..60689a4 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,10 @@ Clone MCEdit: ```bash 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.