When I try to import django
in the python3 interpreter, it says ImportError: No
I think you have installed django outside virtual environment. download virtual environment by
pip install virtualenv
virtualenv your_env
Activate virtual environment.
source your_env/bin/activate
Then, Install django in your virtual environment.
Normally pip 3 install on python3 dist-packages
You can always use pip with:
python3 -m pip install package
to check if you are experiencing troubles with another python3 installation
ls /usr/local/lib | grep python
But the easy way to not experiment this headache is by using virtual environments