码迷,mamicode.com
首页 > 移动开发 > 详细

virtualenvwrapper.sh: There was a problem running the initialization hooks. If Python could not import the module virtualenvwrapper.hook_loader, check that virtualenvwrapper.........(解决办法)

时间:2019-06-01 21:32:43      阅读:441      评论:0      收藏:0      [点我收藏+]

标签:work   rtu   alt   exp   mod   现在   load   成功   com   

Linux(ubuntu)上python2与python3共存环境下,安装virtualenvwrapper后, 其环境变量被自动设置为VIRTUALENVWRAPPER_PYTHON=/usr/bin/python

该地址指向Python2的解释器,现在更改成Python3就可以了,具体操作如下:

# 修改环境变量,重新载入
vim ~/.bashrc

在.bashrc文件中,删除原先的virtualenvwrapper配置,并追加以下内容

技术图片

if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then
    export WORKON_HOME=$HOME/.virtualenvs
    export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
    source /usr/local/bin/virtualenvwrapper.sh
fi

重新载入.bashrc

source ~/.bashrc

 

成功!

技术图片

 

virtualenvwrapper.sh: There was a problem running the initialization hooks. If Python could not import the module virtualenvwrapper.hook_loader, check that virtualenvwrapper.........(解决办法)

标签:work   rtu   alt   exp   mod   现在   load   成功   com   

原文地址:https://www.cnblogs.com/kisun168/p/10960886.html

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