-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
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
Env setup instructions not sufficient for Ubuntu 14.04 #58
Comments
Hi Eddie, Thanks for your report. We're working actively on tutorial in this very moment. As for problem with venv... We can't use python-virtualenv, because this will work only on ubuntu and not on Mac and Windows. Could you tell me what Python version are you using by running |
$ python3 --version
However, the problem is not with the Python version I'm running, but rather with the way Debian/Ubuntu packages it. As I understand it, the tl;dr of the bug report I referenced above is that the Debian packaging rules don't support the bundling of pip with the Python3 package. So in other words, the module I've been thinking about introducing our two summer interns to the Django Girls tutorial next week, so it would be nice if it worked with the current LTS version of Ubuntu by then :) BTW, I'm also at EuroPython, currently sitting next to the 'acab-streetlife' wall if you would rather discuss it in person (I'm not sure where you guys are sitting). |
I could not find you. We're sitting in main sprints area, just by the window. Come and say "Hi" :-) |
We'll add the |
All right, cool. I'll send one soonish. |
Sent pull request #66 |
Following the tutorial instructions will not work cleanly on Ubuntu 14.04; I encountered issues with both the virtual environment and the PostgreSQL setup instructions:
Virtualenv:
PostgreSQL:
I managed to solve the problems with some googling, but since this is supposed to be a very n00b-friendly guide, that should not be required.
The virtualenv-issue can be solved by installing
python-virtualenv
and then using thevirtualenv
-command instead of the command supplied in the tutorial. A fix for the problem is submitted upstream but I have no idea when it will trickle down to Trusty Tahr.From what I can determine, the psql issue is due to the fact that, by default, only the user
postgres
has access to the PostgreSQL server by default. I solved it by adding myself as a PostgreSQL superuser, and editing some config files.I can update the documentation to include the solutions to these issues. Would you like a pull request?
The text was updated successfully, but these errors were encountered: