[Solved]-ImportError: No module named bootstrap3

10👍

Just see which python version your Django environment is using with:

python -V

If it is using Python 2.7 run:

pip install django-bootstrap3

Otherwise, if your Django environment is using version Python 3 use:

pip3 install django-bootstrap3

5👍

Try using

$pip2 install django-bootstrap3

I’m using ubuntu 14.04 and and the pip command installs packages to lib/python3.3/site-packages/ and not to lib/python2.7/site-packages/

2👍

You have to install Requirements.txt and it will be ok.

Run this command:

pip install -r requirements.txt

0👍

Try using:

pip install django-bootstrap3

Instead of:

pip3 install django-bootstrap3

I found out even using just plain old pip just works (even in a python3 environment )when you’re using a virtual environment (I was using anaconda). For some reason pip3 doesn’t work.

👤Smilez

0👍

If Using Conda Virtual Environment First, check conda list

If django-bootstrap3 is not there then install using python -m pip install django-bootstrap3

After this try migrating once again.

I hope this solution works!

Leave a comment