[Answer]-Hitting error when installing django-mssql 1.5

1👍

PIP sees the latest version as a pre-release, use

pip install django-mssql --pre 

to install and it will work fine in python 3+.

Leave a comment