[Django]-How to install/use django-inlinecss

1👍

I had the same problem, so I forked django-inlinecss original repostory and fixed the problem.

You can use

 pip install git+https://github.com/fjsj/django-inlinecss.git@18f2f8e5b5453f067dff0d6c0c2ae3066e56d554

to install it successfully. It was missing a packages=find_packages(), line in stevejalim’s setup.py.

👤fjsj

4👍

Sorry about the inconvenience – I didn’t realize people had really started to use that library! (It’s great to have people actually finding it useful by the way!)

Anyway, I’ve released it on Pypi, so you should now be able to just do a:

$ pip install django-inlinecss

If you have issues please open a ticket over at:

https://github.com/roverdotcom/django-inlinecss

Leave a comment