美文网首页
安装 Django 开发环境

安装 Django 开发环境

作者: 严萨满 | 来源:发表于2019-08-17 12:03 被阅读0次

    安装 Django 开发环境

    1. 激活需要安装的虚拟环境(非必须)

    2. 执行以下命令

    pip3 install Django
    

    如果更新过慢,可以将 pip 更新为国内源

    1. 根目录创建.pip 文件:mkdir ~/.pip

    2. 创建文件 pip.conf:vim .pip/pip.conf

    3. 点击“i”键,进入编辑模式,复制信息:
      [global]
      index-url = https://pypi.tuna.tsinghua.edu.cn/simple
      trusted-host = pypi.tuna.tsinghua.edu.cn

      这个更换的是清华的源,清华的源 5 分钟同步官网一次,建议使用。

      清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
      阿里云 http://mirrors.aliyun.com/pypi/simple/
      中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
      豆瓣(douban) http://pypi.douban.com/simple/
      中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

    4. 点击:“ESC”切换到命令行模式,输入“:wq”保存离开。


    相关文章

      网友评论

          本文标题:安装 Django 开发环境

          本文链接:https://www.haomeiwen.com/subject/owbhsctx.html