Re: Python 3.8 Installed, yet Django 1.11 is Automatically Being Installed on Mac

2020-06-09 Thread arhoon io
Thank you all - I downloaded Django 3.0 using Anaconda. On Tuesday, June 9, 2020 at 2:35:04 PM UTC-5, Clive Bruton wrote: > > You have to use the correct python install: > > python3 -m pip install django > > You can test your versions and locations: > > which python3 >

Re: Python 3.8 Installed, yet Django 1.11 is Automatically Being Installed on Mac

2020-06-09 Thread Clive Bruton
You have to use the correct python install: python3 -m pip install django You can test your versions and locations: which python3 which python python3 -V python -V When you are running the development server: python3 manage.py runserver You ca

Re: Python 3.8 Installed, yet Django 1.11 is Automatically Being Installed on Mac

2020-06-08 Thread carlos
Hi, the best think your work in mac with python is pyenv and pyenv-virtualenv and install all with brew. and you never have a problem really https://github.com/pyenv/pyenv https://github.com/pyenv/pyenv-virtualenv other tutorial https://medium.com/@viviennediegoencarnacion/managing-python-virtual-e

Re: Python 3.8 Installed, yet Django 1.11 is Automatically Being Installed on Mac

2020-06-08 Thread JEGATHEESWARAN SUNDARAVADIVEL
Hi You can give a try like this, python3 -m virtualenv environmentname They , pip3 install django Thanks and regards, Jegatheeswaran On Tue, 9 Jun 2020 at 08:35, arhoon io wrote: > Hello, > > I have installed and successfully confirmed that Python 3.8 works on my > Mac. However, when I pip in

Re: Python 3.8 Installed, yet Django 1.11 is Automatically Being Installed on Mac

2020-06-08 Thread Thomas Lockhart
virtualenv or (probably even better) conda (Anaconda) will be easier environments to manage. I know that MacPorts will also have the packages you’ll need. hth - Tom > On Jun 8, 2020, at 7:37 PM, arhoon io wrote: > > Hello, > > I have installed and successfully confirmed that Python 3.8 work

Python 3.8 Installed, yet Django 1.11 is Automatically Being Installed on Mac

2020-06-08 Thread arhoon io
Hello, I have installed and successfully confirmed that Python 3.8 works on my Mac. However, when I pip installed the latest version of Django, it automatically installed Django 1.11 even though I have Python 3.8. When typing in "python" into terminal, it runs Python 2.7 - so that is my guess