Detailed steps to reinstall Django

Y2J
Release: 2017-05-05 16:11:43
Original
1521 people have browsed it

If you plan to upgrade Django from a past version, you need to delete the old version of Django first and then install the new version. The following article mainly introduces you to the method of reinstalling Django after uninstalling it. The article gives detailed steps. Friends in need can refer to it. Let’s take a look together.

Preface

Everyone should have experienced that different Django versions may be used in different projects. Compatibility is a big problem. If unfortunately you have to take over different version of the project is more tragic!

If you want to reinstall a Django version, you need to uninstall it first and then install it.

Uninstall

First find the django installation path

Python
import
 sys; sys.path = sys.path[1:];
import
 django; print(django.path)
Copy after login

Get

django installation directory ['/ Library/Python/2.7/site-packages/django']

Delete the django directory

After installation

you can reinstall it

If you use Python egg to install Django, delete the Django ``.egg`` file directly,

and delete the egg in ``easy-install.pth`` Quote That’s it.

This file should be found in the ``site-packages`` directory

[Related recommendations]

1. Python free video tutorial

2. Python basic introductory tutorial

3. Application of Python in data science

The above is the detailed content of Detailed steps to reinstall Django. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!