First time here? Check out the FAQ!
2

Are there Debian/Ubuntu packages for Askbot?
 

I've learned to be uncomfortable about installing items on my system that are not know-about/blessed-by the system package manager. Pip and Easy_install both ignore the Apt system.

Is there a deb package for Askbot somewhere? Perhaps an Ubuntu PPA?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Catskul's avatar
23
Catskul
updated 13 years ago, asked 13 years ago

Comments

see more comments

1 Answer

1

There aren't system packages yet, but pip is an excellent system actually, works on all systems for python packages.

What pip or easy_install (btw - there is no reason at all to use easy_install now it is basically obsolete) will not do - they will not install system packages such as a web server, any server modules, or the database.

There are too many options of webservers, and at least two database engines that will work with askbot - so not sure how to satisfy everyone, plus it is additional work to maintain those packages, we just don't have the resources for that yet.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
answered 13 years ago
link

Comments

Thanks for the answer. The issue of resources makes sense. The problem with pip is not that it's not a good tool, it's that package tools can easily step on each other's toes, and mangle dependencies and cross contaminate libraries. Hopefully someone will come along and volunteer to manage packages for you guys. It's an excellent project and would benefit from a package maintainer.
Catskul's avatar Catskul (13 years ago)
Oh, sure, do use "virtualenv" for your python project, this is exactly the tool for that - creates an isolated environment it is very easy to use too. Thanks.
Evgeny's avatar Evgeny (13 years ago)
see more comments