We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you get to the step
./manage.py collectstatic
you'll need Django installed. Using a Python virtualenv, something like
mkvirtualenv django pip install django
Unfortunately, you also need psycopg2 which suffers from the leaky abstraction of needing Postgres in the host OS. So, on a mac, you also need to do
psycopg2
brew install postgresql pip install psycopg2
Woe unto you if you also need to go install Homebrew.
The text was updated successfully, but these errors were encountered:
(I pity the fool.)
Thank you for pointing this out. 👍 I knew this would pop up sooner or later, and I'll augment the docs to reflect this.
Sorry, something went wrong.
0148ed7
I think I fixed it in a reasonably elegant fashion. Please reopen this if it is not sufficient.
I like it. Well played!
No branches or pull requests
When you get to the step
you'll need Django installed. Using a Python virtualenv, something like
Unfortunately, you also need
psycopg2
which suffers from the leaky abstraction of needing Postgres in the host OS. So, on a mac, you also need to doWoe unto you if you also need to go install Homebrew.
The text was updated successfully, but these errors were encountered: