Originally created by: celsius813
Hello,
I tried to install Allura on Ubuntu 11.10 and I went across some python import problem:
"AccessInit: hash collision: 3 for both 1 and 1"
Specifically, I had to change one occurrence of:
from StringIO import StringIO
into:
from cStringIO import StringIO
(since all the other import are made from cStringIO)
and several occurrence of:
import Image, StringIO
into:
from PIL import Image
from cStringIO import StringIO
(although I'm not sure the "from PIL" is necessary to import image, that was the first google result for the AccessInit error)
git Allura revision is 0a6486d23.. (HEAD as of today)
python version is 2.7.2+
Let's try to reproduce this and the TurboGears/Pylons issues discussed at [77363df3]
I wasn't able to duplicate this AccessInit error from PIL, but did make PasteDeploy and TG get installed correctly. forge:db/4065 has several commits, including some other improvements to installation.