码迷,mamicode.com
首页 > Windows程序 > 详细

Windows10下virtualenv配置

时间:2019-02-18 01:31:12      阅读:337      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!