[Solved]-Where is Pip3 Installing Modules?

20👍

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

👤Zartch

4👍

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.

Leave a comment