博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
通过pip删除/管理django旧版本
阅读量:6348 次
发布时间:2019-06-22

本文共 2969 字,大约阅读时间需要 9 分钟。

   最近这段时间,准备继续把django拾起来,断断续续的学习等于等于前功尽弃,学习的效果不是很好,加上这段时间工作上面的事情相对较少,今天中午在休息时间重新搭建了下django环境。

   我是在ubuntu12.04(python:2.7.3),安装了django1.7,准备学习,翻阅django的官方文档看了看,注意到

This tutorial is written for Django 1.7 and Python 3.2 or later. If theDjango version doesn’t match, you can refer to the tutorial for your versionof Django by using the version switcher at the bottom right corner of thispage, or update Django to the newest version. If you are still using Python2.7, you will need to adjust the code samples slightly, as described incomments.

也就是说官方文档讲述的是django1.7跟python3.2版本或者更高版本的相关使用,相关的sample例子也是通过针对这样的版本进行。

于是乎,为了后面学习的时候不会遇到一些由于版本引起的诡异问题,还是采取跟官方文档适应的相关版本进行学习。所以就需要进行版本的变更。

This tutorial is written for Django 1.6 and Python 2.x. If the Djangoversion doesn’t match, you can refer to the tutorial for your version ofDjango by using the version switcher at the bottom right corner of this page,or update Django to the newest version. If you are using Python 3.x, be awarethat your code may need to differ from what is in the tutorial and you shouldcontinue using the tutorial only if you know what you are doing with Python3.x.

从以上官方文档上面来看,django1.6与python2.x版本使用较好。

不晓得各位是怎么安装django的,我是直接解压tgz包,然后python setup.py install 进行安装,问了一些python玩得好的朋友,说卸载django版本是不可以通过setup.py完成的,最好是通过pip进行版本管理。

root@ubuntu1204:~# sudo apt-get  install python-piproot@ubuntu1204:~/Django-1.7# pip install django==1.6.5Downloading/unpacking django==1.6.5  Downloading Django-1.6.5.tar.gz (6.6Mb): 6.6Mb downloaded  Running setup.py egg_info for package django        warning: no previously-included files matching '__pycache__' found under directory '*'    warning: no previously-included files matching '*.py[co]' found under directory '*'Installing collected packages: django  Found existing installation: Django 1.7    Uninstalling Django:      Successfully uninstalled Django  Running setup.py install for django    changing mode of build/scripts-2.7/django-admin.py from 644 to 755        warning: no previously-included files matching '__pycache__' found under directory '*'    warning: no previously-included files matching '*.py[co]' found under directory '*'    changing mode of /usr/local/bin/django-admin.py to 755Successfully installed djangoCleaning up...

如此,最终看下我们使用的学习组合应该就满足了官方文档版本需求了。

root@ubuntu1204:~# python -VPython 2.7.3root@ubuntu1204:~# python -c "import django; print(django.get_version())"1.6.5

============================官方文档如是说==================================

If you previously installed Django using python setup.py install,uninstalling is as simple as deleting the django directory from your Pythonsite-packages. To find the directory you need to remove, you can run thefollowing at your shell prompt (not the interactive Python prompt):

按照官方文档的意思,如果是通过python setup.py install的方式安装的话,查找到django的安装目录,然后执行删除即可。

root@ubuntu1204:~# python -c "import sys; sys.path = sys.path[1:]; import django; print(django.__path__)"['/usr/local/lib/python2.7/dist-packages/django']

转载地址:http://yapla.baihongyu.com/

你可能感兴趣的文章
SQL开发利器SQL Prompt
查看>>
二分查找,php
查看>>
必看的 jQuery性能优化的38个建议 (转)
查看>>
oracle 常用DBA管理脚本--数据库构架体系
查看>>
小记开发过程中一个问题,以及python库加载
查看>>
python面试题-django相关
查看>>
[LeetCode] Lowest Common Ancestor of a Binary Tree
查看>>
运用Merge Into实现增加或更新数据
查看>>
Python——eventlet.greenthread
查看>>
使用sphinx创建和查看文档
查看>>
记大众点评之面试经历
查看>>
ABAP中查找代码的标准程序
查看>>
第七次作业
查看>>
第三章:基本概念
查看>>
Jersey+mybatis实现web项目第一篇
查看>>
C++形参中const char * 与 char * 的区别
查看>>
espresso 2.0.4 Apple Xcode 4.4.1 coteditor 价格
查看>>
Object-C中emoji与json的问题
查看>>
一、Lambda表达式
查看>>
linux 命令
查看>>