Hi, 1. the best thing you can do is to create a virtual env (check virtualenv and virtualenvwrapper on google) and then install web.py within the virtual environment. This way you keep your system python installation clean.
2. To install web.py system-wide, try to remove the repository version first, with apt-get purge web.py (if you have not already done so), then use what you prefer to install the latest web.py (easy_install, pip or setup.py) I strongly recommend you to use a virtualenv.. once you learn to use them you can't live without. Hope this will help :) Bye 2011/7/8 siznax <[email protected]> > how can i upgrade to the latest web.py in Ubuntu? > > i started off installing web.py with apt-get: > > # sudo apt-get install python-webpy > # python -c "import web; print web.__version__" > 0.33 > > and this worked fine until i ran into the IndexError problem[1] > > when i try to install the latest with easy_install or setup.py, > i still have web.py 0.33 system-wide. > > thanks for any info. > > /siznax > > [1]: > http://groups.google.com/group/webpy/browse_thread/thread/18dd38a41b6ce685/20c345792cf008b0 > > -- > You received this message because you are subscribed to the Google Groups > "web.py" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/webpy?hl=en. > > -- Federico Frenguelli -- You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/webpy?hl=en.
