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