Reputation: 160
Need help with bottle, I have a clean installation of Ubuntu 11.10, i'm trying to get bottle with the next command : sudo apt-get install python-bottle, and i get the bottle version 0.9.5-1 , that's not the last one(0.10.6-1) and does not include some features that i need. Anybody knows why? I do not want to use easy-install or pip, help!
Upvotes: 1
Views: 842
Reputation: 1122342
You'd need to upgrade your Ubuntu installation to precise (version 0.10.6) or to quantal (version 0.10.11).
Older Ubuntu releases do not get new versions of packages; python-bottle
is also not part of the Ubuntu backports packages.
I strongly advise you to use a virtualenv and install the latest bottle version in there with pip
. Ubuntu packages are not agile enough to follow the faster release cycles of many Python packages.
Upvotes: 2