Edited wiki page GettingStarted through web user interface.
diff --git a/GettingStarted.wiki b/GettingStarted.wiki
index 2a9ac23..4406e72 100644
--- a/GettingStarted.wiki
+++ b/GettingStarted.wiki
@@ -181,6 +181,22 @@
 
 = Troubleshooting =
 
+==NoneTypeAttributeError==
+{{{
+
+Traceback (most recent call last):
+  File "bootstrap.py", line 105, in <module>
+    ws.find(pkg_resources.Requirement.parse(requirement)).location
+AttributeError: 'NoneType' object has no attribute 'location'
+
+}}}
+
+[https://bugs.launchpad.net/zc.buildout/+bug/515398]
+
+I was able to solve the problem by removing the python-pkg-resources package. I think the bootstrap script, being able to import pkg_resources, assumes that I have Distribute or Setuptools installed, which is not the case.
+
+
+
 == AppConfigNotFoundError ==