Windows10下virtualenv配置
2021-06-14 22:03
标签:ros 删除 执行 https profile document nbsp pytho tps 1.安装virtualenv pip install virtualenv 2.选定一个目录,作为存储不同环境的总目录 3.安装virtualenvwrapper-powershell(只适用于Python2)或者 virtualenvwrapper-win(推荐) 安装virtualenvwrapper-powershell(不推荐): 下载:https://pypi.org/project/virtualenvwrapper-powershell/#files 解压 修改distribute_setup.py里面的DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/"为:DEFAULT_URL = "https://pypi.python.org/packages/source/d/distribute/",即把http改成https 然后执行python stepup.py install 安装virtualenvwrapper-powershell: pip install virtualenvwrapper-win 4.设置环境变量 WORKON_HOME为你要存储所有环境的总目录 5.每次新开Powershell,需要执行import-module virtualenvwrapper 为了不每次都输入,可以在 C:\Users\your_user_name\Documents\WindowsPowerShell下建一个Microsoft.PowerShell_profile.ps1的文件,写入import-module virtualenvwrapper,便可以在每次打开powershell的时候自动执行这一句。 6.常用命令 查看所有环境 workon 或者 lsvirtualenv 切换到某个环境 workon 环境名字 退出环境 deactivate 创建环境 mkvirtualenv 环境名字 删除环境 rmvirtualenv Windows10下virtualenv配置 标签:ros 删除 执行 https profile document nbsp pytho tps 原文地址:https://www.cnblogs.com/huangshiyu13/p/10393540.html
下一篇:c# GC 新典型
文章标题:Windows10下virtualenv配置
文章链接:http://soscw.com/index.php/essay/93998.html