First, you should definitely do this process in a development environment first. Create a dump of your production DB if you need it, and import it into your development database.
"Un-installing" Django is unnecessary. I'd recommend simply renaming the django folder in your site-packages directory to something like django_old and then install the new version of Django.
Start up your development environment with runserver and see what happens. Run the testsuite to make sure your apps and third-party apps you're using don't have any major issues.
If everything works fine, you can then repeat the process on your production machine. Honestly, you really shouldn't have many problems, though. Django very rarely deprecates anything, and when they do, there's always deprecation warnings for multiple versions, before it actually ceases to function. Correct any deprecation warnings you get as soon as possible though.