Re: how to get get-pip.py

2015-06-04 Thread DHaval Joshi
try this sudo apt-get install python-pip On Thu, Jun 4, 2015 at 8:54 AM, Steve Burrus wrote: > *Well Mikea I hardly did it the first time that I tried but I was able to > get Python 3.4 installed ! And I also got that ez-setup installed okay. But > where do I go from here to get pip going oka

Bug? Infinite migrations with empty help_text and ugettext_lazy

2015-06-04 Thread Andy Gimblett
Hi all, I've come across something which might possibly be a Django bug, but I wanted to raise it here first in case I'm missing something, or this is expected behaviour. There's a fuller explanation and easily runnable example here: https://github.com/gimbo/django-ugettext_lazy_migrations

Re: Bug? Infinite migrations with empty help_text and ugettext_lazy

2015-06-04 Thread Carl Meyer
Hi Andy, On 06/04/2015 09:44 AM, Andy Gimblett wrote: > I've come across something which might possibly be a Django bug, but I wanted > to raise it here first in case I'm missing something, or this is expected > behaviour. > > There's a fuller explanation and easily runnable example here: > >

Re: how to get get-pip.py

2015-06-04 Thread Steve Burrus
*I am sorry Dhavi but your command didmn't work! Now I don't think you know that I am on a Windows system and that "sudo" command do esn't work on windows. Any other ideas for me? * *On Thu, Jun 4, 2015 at 3:04 AM, DHaval Joshi > wrote:* > > > > *try this sudo apt-get install python-pip* > > > >

Re: Bug? Infinite migrations with empty help_text and ugettext_lazy

2015-06-04 Thread Andy Gimblett
Hi Carl, On 4 Jun 2015, at 18:05, Carl Meyer wrote: > That is most certainly a bug. It's not a super-high-priority bug > (because an empty translated help_text is an odd thing to do), but it's > a bug nonetheless and should be filed at > https://code.djangoproject.com/newticket and fixed. > > .

Re: how to get get-pip.py

2015-06-04 Thread Michael Manfre
"sudo apt-get install ..." is a command that works on Ubuntu and a few other flavors of linux. It does not work on Windows. Which version of Python did you install? If it's Python 3.4 or newer, pip is bundled. Python 3.4 is installed to "C:\Python34\" as the default. To use pip, you would execu

Re: how to get get-pip.py

2015-06-04 Thread Steve Burrus
*"Which version of Python did you install?" well up until last nite I was using some flavor of Python 3.5. But someone suggested that I get the 3.4 version of it so I did. I have all of the environment varianbles set correctly. I did the ez_install.py thing right. And you would think that I could e

Re: how to get get-pip.py

2015-06-04 Thread memilanuk
On 06/04/2015 11:53 AM, Steve Burrus wrote: *"Which version of Python did you install?" well up until last nite I was using some flavor of Python 3.5. But someone suggested that I get the 3.4 version of it so I did. I have _all _of the environment varianbles set correctly. I did the ez_install.py

Re: how to get get-pip.py

2015-06-04 Thread Steve Burrus
sorry monte for the "inane" quesation but which Path should I use in Env. Variables, the one in "Users" or the one below in "System", to set the correct path with Python? I have seen conflicting tutorials which have said to use one or the other. Steve On Thu, Jun 4, 2015 at 3:2

Re: how to get get-pip.py

2015-06-04 Thread Alon Nisser
1. Please, This is an open source community, with people answering questions here on their free time (no one here is getting payed to answer). so no need for the BOLD Frustrated type. 2. Specifying you are on windows from the beginning would help, Lots of us are using different flavors of wind

Implementing multiple user types with Django 1.7

2015-06-04 Thread marcelle Kouam
hello, I want to create differents types of user( manager, employee, client) in my model. but I don't know how to implemente this. I read many tutorials on the django site but I unable to implement this. thank for your help this is my models.py from django.db import models from django.contrib.

Re: how to get get-pip.py

2015-06-04 Thread memilanuk
On 06/04/2015 01:43 PM, Steve Burrus wrote: but which Path should I use in Env. Variables, the one in "Users" or the one below in "System", to set the correct path with Python? I have seen conflicting tutorials which have said to use one or the other. Like I said... the simplest way to get i

Re: how to get get-pip.py

2015-06-04 Thread Steve Burrus
it seems like I haVE also seen someone say I should put, into the System path, the Python Lib\site-packages\django\bin or sometjhing like that. On Thu, Jun 4, 2015 at 4:01 PM, memilanuk wrote: > On 06/04/2015 01:43 PM, Steve Burrus wrote: > >> but which Path should I use in Env. Variables, the o

Re: how to get get-pip.py

2015-06-04 Thread memilanuk
On 06/04/2015 02:42 PM, Steve Burrus wrote: it seems like I haVE also seen someone say I should put, into the System path, the Python Lib\site-packages\django\bin or sometjhing like that. I think I'd just worry about getting python/pip working from the command line first, then virtualenv/virt

Re: how to get get-pip.py

2015-06-04 Thread Steve Burrus
when I try to run Python it comes for me normally! [ No problem ] I not heard yet about a pip.exe file. Just where is that contained in the Python ins tallation anyway? I will try that "pip install virtualenv" soon. On Thu, Jun 4, 2015 at 3:52 PM, Alon Nisser wrote: > 1. Please, This is an open

Re: how to get get-pip.py

2015-06-04 Thread Michael Manfre
On Thu, Jun 4, 2015 at 7:15 PM, Steve Burrus wrote: > when I try to run Python it comes for me normally! [ No problem ] I not > heard yet about a pip.exe file. Just where is that contained in the Python > ins tallation anyway? I will try that "pip install virtualenv" soon. > C:\Python34\Scripts

Re: how to get get-pip.py

2015-06-04 Thread Steve Burrus
*well I mdid exactly what you instructed but it still didn't work! Here is the error mesg. that I got : "* *c:\Users\SteveB\Desktop>pip install virtualenv * *Fatal error in launcher: Job information querying failed".* *On Thu, Jun 4, 2015 at 8:00 PM, Michael Manfre > wrote:* > > > > > > *On Thu,

Re: how to get get-pip.py

2015-06-04 Thread memilanuk
Stop. Uninstall python (whatever version(s) you have). Re-install python (3.4.3), but this time when you get to the screen telling you what all is going to be installed, scroll down and enable the last item "Add python.exe to the PATH". Python commands (including pip) should work from the co