On 04 Mar 2011, at 1:28 PM, Mikael Syska wrote: > I would love to help ... but still have some issues.
Cool. > > Are there any speciel areas you want feedback from ? Just the level of usability and the bugs you have picked up. > > > I get the following error. When uninstalling "anyjson" i says it can't > find the module, so I guess its installed right. Why are you uninstalling it ? > But its missing a > attribute. Google did not give me any real feedback on my problem, > other than if there were any other files "named" json.py that might > conflict. But when uninstalling anyjson it says its can't find the > module. Is it installing our uninstalling ? > > So have you any idea what might be missing here Yes, it seems like you do not have the anyjson module installed, if there is no ports package you it you can install it using pip pip install anyjson I recommend however that you use virtualenv such that your system python path does not become a wasteland of modules that you cannot uninstall - http://virtualenv.openplans.org/ There are other advantages to using virtualenv as well in that you can have several python installations and you do not have to be root to install packages. If you have virtualenv in ports install it via ports Then create the virtual environment in your home directory. virtualenv localpython --clear --no-site-packages --distribute source localpython/bin/activate git clone git://github.com/akissa/baruwa.git wget http://geolite.maxmind.com/download/geoip/api/python/GeoIP-Python-1.2.4.tar.gz tar xzvf GeoIP-Python-1.2.4.tar.gz cd GeoIP-Python-1.2.4 python setup.py install cd - cd baruwa python setup.py install Edit baruwa/virtual.wsgi and set the correct paths Edit your apache configuration and point the paths to the correct place (make sure you use virtual.wsgi not baruwa.wsgi) Using virtualhosts you can both 1.0.2 and 1.1.0 systems at the same time (testing on 1.1.0 and production on 1.0.2) Hope that helps. -- Baruwa - www.baruwa.org _______________________________________________ Baruwa mailing list [email protected] http://lists.baruwa.org/mailman/listinfo/baruwa

