Added section on _sqlite3 for python2.5
diff --git a/GettingStarted.wiki b/GettingStarted.wiki
index 614a575..a78bb75 100644
--- a/GettingStarted.wiki
+++ b/GettingStarted.wiki
@@ -315,4 +315,18 @@
 
 {{{
 sudo easy_install distribute==0.6.15
-}}}
\ No newline at end of file
+}}}
+
+== ImportError: No module named _sqlite3 ==
+
+{{{
+Traceback (most recent call last):
+  File "<stdin>", line 1, in <module>
+  File "/usr/local/lib/python2.5/sqlite3/__init__.py", line 24, in <module>
+    from dbapi2 import *
+  File "/usr/local/lib/python2.5/sqlite3/dbapi2.py", line 27, in <module>
+    from _sqlite3 import *
+ImportError: No module named _sqlite3
+}}}
+
+This happens when you've manually compiled python 2.5, you should consider instead using the version of python that comes with your OS. If not, compile python 2.5 with sqlite support. See also [http://stackoverflow.com/questions/1210664/no-module-named-sqlite3 this article] on stackoverflow.
\ No newline at end of file