Re: problem with instaling django

2018-07-17 Thread mottaz hejaze
first install python 3.6 not 3.7 second install virtualenv third make a virtualenv and use pip inside it .. On Wed, 18 Jul 2018, 01:36 Gerardo Palazuelos Guerrero, < gerardo.palazue...@gmail.com> wrote: > Hi, > Is there any chance that you can use a Virtual Environment? > At least in my experienc

Re: problem with instaling django

2018-07-17 Thread Gerardo Palazuelos Guerrero
Hi, Is there any chance that you can use a Virtual Environment? At least in my experience, many issues happened to me because due to issues resolving the proper python version in my computer, until I started using a virtual environment per django project. I suggest you to check the django girls tu

Re: problem with instaling django

2018-07-17 Thread Shay Hershko
> > I tried and this is what showes up > > -- You received this message because you are subscribed to the Google Groups "Django users" gr

Re: problem with instaling django

2018-07-17 Thread rajib ghosh
First install Anaconda Try Pip install Django Or Easy install django On Mon, 16 Jul 2018, 20:32 Ashok Ramesh, wrote: > sys.setdefaultencoding('latin-1') try this in settings instead > of sys.setdefaultencoding('utf-8') > > On Mon, Jul 16, 2018 at 7:47 PM Shay Hershko > wrote: > >> i tried to i

Re: problem with instaling django

2018-07-16 Thread Ashok Ramesh
sys.setdefaultencoding('latin-1') try this in settings instead of sys.setdefaultencoding('utf-8') On Mon, Jul 16, 2018 at 7:47 PM Shay Hershko wrote: > i tried to install django and for some reson it dosent work i have > followed the instructions on the website and on thie video ( > https://www

Re: problem with instaling django

2018-07-16 Thread mr 2mato
Use this commands to solve ur problem: “Python manage.py makemigrations” Then “Python manage.py migrate” When you add new file such as static files & adding new app You have to use this 2 commands. > On Jul 16, 2018, at 6:47 PM, Shay Hershko wrote: > > i tried to install django and for some r

problem with instaling django

2018-07-16 Thread Shay Hershko
i tried to install django and for some reson it dosent work i have followed the instructions on the website and on thie video (https://www.youtube.com/watch?v=MEcWRk9w0t0) and this is what i get

Re: Instaling django

2012-09-21 Thread Arman Goshayeshi
Thank you very much, sorry for the delay of my answer On 31 August 2012 08:14, Jon Blake wrote: > What O/S? > > I installed Django 1.4.1 today on my Linux F14 box today by: > > 1. Downloading Django-1.4.1.tar.gz from > https://www.djangoproject.com/download/ > 2. As root: > # tar xzvf Django-1.

Re: Instaling django

2012-08-30 Thread Jon Blake
What O/S? I installed Django 1.4.1 today on my Linux F14 box today by: 1. Downloading Django-1.4.1.tar.gz from https://www.djangoproject.com/download/ 2. As root: # tar xzvf Django-1.4.1.tar.gz # cd Django-1.4.1 # python setup.py install # exit 3. Test it: $ python >>> import django >>> print dj

Re: Instaling django

2012-08-30 Thread Amyth Arora
Seems you have not correctly installed django, you can follow any of the following tutorials to install the latest stable version of django according to your operating system: for windows: Install Django on Windows Tutorial for linux (ubuntu) :

Re: Instaling django

2012-08-30 Thread Enyert Viñas
U need to install django correctly. Check that you have the a supported python version for your django version. Try easy_install django or pip django. I think the installation instruction from django project site https://www.djangoproject.com/download/ are clear. If you are in windows use your favo

Re: Instaling django

2012-08-30 Thread azizmb.in
Hi Did you install django correctly? Try, easy_install django or if you have pip, pip install django (you might need to use sudo for this) On Thu, Aug 30, 2012 at 11:58 AM, Balle wrote: > Hi, I have been trying to download django with every options but when i > run pyhton on the terminal

Instaling django

2012-08-30 Thread Balle
Hi, I have been trying to download django with every options but when i run pyhton on the terminal and then asks to import django. It always says no mudule named django. Could you pls help, donload it. Thank you in advance -- You received this message because you are subscribed to the Goog