Re: Installing django on red hat linux box

2014-10-22 Thread Pat Claffey
One final suggestion... If you are using python3.3 then pip may be called pip3.3 You could try "which python3.3" or "which python" (if python points to python3.3). This should give you path to python executable directory. If you look there you may be lucky and see a pip executable - perhaps

Re: Installing django on red hat linux box

2014-10-22 Thread Pat Claffey
once I got pip sorted out it was really easy install django (just pip install django) - so advise is to get pip working. You will need it for other python packages also. On Wednesday, October 22, 2014 5:12:10 PM UTC+1, robert brook wrote: > > > I have alot of experience installing packages on

Re: Installing django on red hat linux box

2014-10-22 Thread Pat Claffey
Hi, I assume you have python installed successfully. What version? If you install python 3.4 then pip should install automatically (unless 3.4. is a second python install in which case pip does not install) You should be able to see the python (and pip) executables in /usr/bin or /usr/local/

Re: Customize admin page title (from tutorial)

2014-10-21 Thread Pat Claffey
On Saturday, October 18, 2014 1:16:32 PM UTC+1, pranee...@gmail.com wrote: > > Hi, > I am new to django. I am following Django tutorial(part2). I want to > know how to customize title of my admin page from "*Django > administration" to " some Text".* Help me..*! *Thanks in advance.. >

Re: Customize admin page title (from tutorial)

2014-10-18 Thread Pat Claffey
Hi, yes this is possible. I have recently done this tutorial and succeeded in customizing the title. In my opinion the instructions in this part of the tutorial are hard to understand. Here is what I did: 1.0 Navigate to the project directory mysite/mysite/ 2.0 Create a new sub-directory cal