A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
| # uninstall postgresql if necessary | |
| $ sudo pacman -R postgresql postgresql-libs | |
| # remove postgres files | |
| $ sudo rm -rfv /var/lib/postgres | |
| # proceed with the installation | |
| $ sudo pacman -S postgresql postgresql-libs | |
| # setup password for postgres | |
| $ sudo passwd postgres |