Django项目上线部署

Django项目上线部署

 

安装Python环境

对应关系:

Python 2.7.5   ==>   Anaconda3-5.0.1-Linux-x86_64.sh

Python 3.6.5   ==>   Anaconda3-5.2.0-Linux-x86_64.sh

 

[root@@prom ~]# wget https://repo.continuum.io/archive/ Anaconda3-5.2.0-Linux-x86_64.sh

[root@prom ~]# chmod +X  Anaconda3-5.2.0-Linux-x86_64.sh

[root@prom ~]# yum install bzip2

[root@prom ~]# ./ Anaconda3-5.2.0-Linux-x86_64.sh

[root@prom ~]# python -V

Python 2.7.5

[root@prom ~]# source /root/.bashrc

[root@prom ~]# python -V          

Python 3.6.5 :: Anaconda, Inc.

 

安装Django应用。

[root@prom ~]# pip install Django==1.11.13

[root@prom ~]# pip freeze |grep Django     

Django==1.11.13

[root@prom ~]#

posted @ 2021-06-24 10:20  wang_wei123  阅读(85)  评论(0编辑  收藏  举报