简体   繁体   中英

How do I install an older version of a django package?

I'm trying to install django-excel , but it seems like it has been upgraded to function with Django 1.9+

I'm using Django 1.8 and would like to make the package work again. I tried this, but I want to go back to a previous version(Django 1.7+):

pip install django-excel 

You will need to install a prior version like so:

pip install django-excel==0.1

Similar to how it appears if you run the pip freeze command.

pip uninstall django

pip install django==<version>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM