--
You received this message because you are subscribed to the Google Groups "rapidsms" group.
To post to this group, send email to rapi...@googlegroups.com.
To unsubscribe from this group, send email to rapidsms+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rapidsms?hl=en.
should install pip
hth,
Sanjay
I can't replicate this error. Are you sure your virtualenv is active?
You should see the name of your virtual environment in parenthesis in
front of your bash prompt.
Cheers,
Evan
--
You received this message because you are subscribed to the Google Groups "rapidsms" group.
To post to this group, send email to rapi...@googlegroups.com.
To unsubscribe from this group, send email to rapidsms+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rapidsms?hl=en.
Cheers,
Evan
Have not done a rapidsms install in some time, but looks like you
don't have django installed?
Inside the virtualenv:
pip install django
also -- not sure why you're running the startproject command as sudo?
If you're in a virtualenv in your home directory or so, you shouldn't
need to sudo that command, in fact, I would think it is, in most
cases, a bad idea to sudo that command.
best of luck,
Sanjay
Due to the fact that your virtualenv is under the working environment
of the current user, using sudo is likely to give problems. Instead of
$ sudo rapidsms-admin.py startproject projectname
use:
$ rapidsms-admin.py startproject projectname
I suspect this to be the case and because I'm not using a Mac, I
cannot be certain. Do provide feedback on the outcome.
> --
> You received this message because you are subscribed to the Google Groups
> "rapidsms" group.
> To post to this group, send email to rapi...@googlegroups.com.
> To unsubscribe from this group, send email to
> rapidsms+u...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/rapidsms?hl=en.
>
>
--
Tim Akinbo
Sanjay
% python --version
It looks like you are on python 2.5, and although I don't know why
that would cause problems it seems like a possible cause.
What error do you get when you try the startproject command?
-Nic
Ahh.. ok, looking at this explains it.
ignore_patterns was added in Python 2.6, it looks like you guys are on
2.5, so that's why it isn't working.
I'm guessing that would be easy enough to change, though I don't know
if there are other 2.6 dependencies lurking.
-Nic
Yup i'm on 2.6! Good sleuthing!
I think we've been aiming for 2.5 support, so please create an issue
on the issue tracker for this.
I don't think this particular feature is worth ditching 2.5 support.
Otherwise I think most of the other 2.6 stuff (with statements, etc)
in rapidsms can be imported into 2.5 from __future__