skigil

# Mar 14 2010 - 2:03 PM

Dallas, TX

When I run
make setup

I get the following errors:
--- Installing database
Error: No module named registration
make: *** [install_db] Error 1


Let me know if anyone has encountered this before.

Thanks.




mike

# Mar 14 2010 - 10:03 PM

skigil
When I run
make setup

I get the following errors:
--- Installing database
Error: No module named registration
make: *** [install_db] Error 1


Sorry for the trouble -- you need the django-registration library. Try:

sudo apt-get install python-django-registration


... or ...

sudo easy_install django-registration


cheers,
mike




skigil

# Mar 15 2010 - 10:03 AM

Dallas, TX

Notes to anyone else doing this by hand, on a Mac (10.6):

You also need to install:
http://www.pythonware.com/products/pil/
http://www.ijg.org/
http://savannah.nongnu.org/download/freetype/
http://www.littlecms.com/downloads.htm

..and then this last:
http://bitbucket.org/ubernostrum/django-registration/

........then you can do
make setup (in the kegbot-hg/pykeg directory)


Thanks to mike for pointing me in the right direction!

Edited by skigil (March 15, 2010 10:59:33)






mike

# Mar 17 2010 - 8:03 PM

Thanks for posting the dependencies -- I'll get these added to the setup instructions in the nex docs update.

(BTW, if you're a mac user, I recommend installing MacPorts. I use this for most of the kegbot deps & do a bunch of development on the mac this way.)

cheers,
mike




Jallen81

# Apr 11 2010 - 3:04 PM

Michigan

decided to move kegbot off of a virtual machine and on a spare laptop. upon doing so, i am coming up with errors while running "make setup" and can't figure out where i went wrong.

/home/jared/kegbot/kegbot-hg/pykeg/bin/kegbot_admin.py: error: no such option: --all
make: *** [install_db] Error 2

Thanks




mike

# Apr 11 2010 - 5:04 PM

Jallen81
decided to move kegbot off of a virtual machine and on a spare laptop. upon doing so, i am coming up with errors while running "make setup" and can't figure out where i went wrong.


Looks like this machine has another version of the django `south` library installed somewhere. I've just pushed a change (rev e7d52090da96) which might help.




Jallen81

# Apr 11 2010 - 7:04 PM

Michigan

not too familiar with mercurial. how do i update to a certain rev?




mike

# Apr 11 2010 - 9:04 PM

Jallen81
not too familiar with mercurial. how do i update to a certain rev?


In general:
hg pull -u


A somewhat-stable rev of the tree is maintained with the tag "stableish"; you might want to sync to that, though:

hg pull -u -r stableish


(Right now that tag is the same as the tip of the tree.)




Jallen81

# Apr 12 2010 - 7:04 PM

Michigan

mike
[quote=Jallen81]not too familiar with mercurial. how do i update to a certain rev?


In general:
hg pull -u


A somewhat-stable rev of the tree is maintained with the tag "stableish"; you might want to sync to that, though:

hg pull -u -r stableish


(Right now that tag is the same as the tip of the tree.)[/quote]

Well, still not sure what went wrong, but after trying just about everything, i decided to try again. reinstalled ubuntu, and all software. everything went smooth this time, all is good. thanks again though