sandra
sandra

Reputation: 987

How to install django for python 3.3

I had python 2.6.1 because it was old I decide to install python 3.3.2 but, when I type "python" in my mac it prints it is version 2.6.1 and when I type python3 it shows that this is 3.3.2. I installed django 1.6 but when I check, understand that it is installed for old version of python (python 2.6.1). I want to instal it for my python 3.3.2 what should I do? any way to uninstall python 2.6.1 and when I enter python in terminal it's version be 3.3.2? I have mac os 10.6.8

Upvotes: 14

Views: 17821

Answers (4)

Akshay Anurag
Akshay Anurag

Reputation: 744

To install django for python3, you need to use pip3 instead of pip.

python defaults to python2. pip defaults to pip for python2. So, when you install pip using whatever package manager you have, you are essentially installing pip for python2.

To remove Python2: $sudo apt remove python

To install pip for python3: $sudo apt install python3-pip

To install pip for python2: $sudo apt install python-pip

Note: I am using apt package manager. You should use the package manager for your OS.

Upvotes: 0

Risadinha
Risadinha

Reputation: 16666

Use python3 to call python version 3 on the command line.

For projects you can use virtual environments:

$ python # this will be version 2
$ python3 -m venv myenv
$ source myenv/bin/activate
$ python # this will be version 3

where myenv will be the folder that hosts the libraries and binaries for that virtual environment. It will automcatically use the python version that was used to initialize this venv - in this case python3. This has the effect that once you activate the venv you can use python there and it will be version 3.

Upvotes: 8

sottany
sottany

Reputation: 1098

to setup django in pyton3

  1. sudo apt-get install python3-pip
  2. sudo pip3 install virtualenv
  3. virtualenv -p /usr/bin/python3.X venv
  4. source venv/bin/activate

congrats you have setup python3 django and now have many packages to work with

Note: X stands for the version of python

Upvotes: 1

flyingfoxlee
flyingfoxlee

Reputation: 1794

You could use pip to manage the package for you. If pip is not installed. use

sudo easy_install pip

to install it. Then

pip3 install django

would install django for your python3.

Upvotes: 32

Related Questions