美文网首页
virtualenv 基本用法

virtualenv 基本用法

作者: sudacq | 来源:发表于2019-01-03 10:38 被阅读0次
    pip install virtualenv 
    virtualenv venv
    virtualenv -p `which python3` venv
    source venv/bin/activate
    deactivate
    pip freeze > requirements.txt
    pip install -r requirements.txt
    

    相关文章

      网友评论

          本文标题:virtualenv 基本用法

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