Search code examples
python-3.xubuntu-14.04pgadmin-4

ImportError: No module named htmlmin.minify


Command:

python3 pgadmin4-1.1/web/setup.py

Error:

ImportError: No module named 'htmlmin.minify'

I had a similar problem with htmlmin module, but I solved with:

sudo pip3 install htmlmin

Any suggestion? Thanks.


Solution

  • I solved with:

    sudo pip3 install django-htmlmin
    

    Thanks