美文网首页
how to create a django env

how to create a django env

作者: superestZe | 来源:发表于2018-12-08 21:45 被阅读0次

    Today I will tell you how to create a django env, and use it to create a simple app.

    • install your virtual Env

      pip install virtualenvwrapper-win
      
    • create you virtual Env

      mkvirtualenv yourVirtualName
      
    • check you virtual Env

      workon 
      
    • use one of the virtual Env

      workon yourTargetVirtual
      
    • exit virtual

      deavtivate
      
    • check package in you virtual Env

      pip list
      
    • install package

      pip install yourTargetPackage
      
    • uninstall package

      pip unInstall yourTargetPackage
      

    相关文章

      网友评论

          本文标题:how to create a django env

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