温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

django+xadmin在win7-64bit下安装记录

发布时间:2020-07-08 17:51:05 来源:网络 阅读:998 作者:zhengweila 栏目:开发技术

### django+xadmin在win7-64bit下安装简单记录

1、下载python: https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi

安装 python-2.7.12.amd64.msi   # 注释选择安装路径,这里是:D:\ProgramFiles\Python27

2、配置环境变量Path里:  # 计算机—>右键—>高级系统设置—>高级—>环境变量—>修改Path,加入:

  D:\ProgramFiles\Python27;D:\ProgramFiles\Python27\Scripts;

3、下载xadmin:  https://github.com/sshwsfc/xadmin

  解压xadmin-master.zip到D:\ProgramFiles\Python27\xadmin   # 我放置在python安装路径下了

4、安装django+xadmin:

  >pip install -r requirements.txt D:\ProgramFiles\Python27\xadmin\requirements.txt

5、配置环境变量Path里:

  D:\ProgramFiles\Python27\Lib\site-packages\django

6、测试版本:

D:\ProgramFiles\Python27\Scripts>python

>>> import django

>>> django.get_version()

'1.9.10'

>>> quit()

7、测试页面

>cd D:\ProgramFiles\Python27\xadmin\demo_app

>python manage.py runserver 0.0.0.0:8000      # 显示如下信息:

D:\ProgramFiles\Python27\xadmin\demo_app>python manage.py runserver 0.0.0.0:8000

Performing system checks...

System check identified no issues (0 silenced).

You have unapplied migrations; your app may not work properly until they are app

lied.

Run 'python manage.py migrate' to apply them.

October 31, 2016 - 14:50:16

Django version 1.9.10, using settings 'demo.settings'

Starting development server at http://0.0.0.0:8000/

Quit the server with CTRL-BREAK.

### 浏览器访问::http://IP:8000            # 显示页面表示安装成功

django+xadmin在win7-64bit下安装记录

8、导入数据

D:\ProgramFiles\Python27\xadmin\demo_app>python manage.py migrate

D:\ProgramFiles\Python27\xadmin\demo_app>python manage.py createsuperuser

D:\ProgramFiles\Python27\xadmin\demo_app>python manage.py runserver 0.0.0.0:8000

### 浏览器访问::http://IP:8000         

### 使用设置的账号密码admin\admin登录进入系统


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI