zoukankan      html  css  js  c++  java
  • Mac安装virtualwrapper时报错No module named virtualenvwrapper

    前言

    我在使用mac安装virtualwrapper的时候遇到了问题,搞了好长时间,才弄好,在这里总结一下分享出来,供遇到相同的问题的朋友使用,少走些弯路。

    问题说明

    使用系统:Mac默认系统的python2,而我自己用的是brew安装的python3

    下面是我安装过程中出现的问题:

    1. 安装virtualwrapper,打开终端,输入如下的命令:
    pip3 install virtualenv
    pip3 install virtualenvwrapper
    
    1. 在配置文件~/.bash_profile中添加代码:
    # Settings for virtualenvwrapper
    export WORKON_HOME=$HOME/.virtualenvs
    source /usr/local/bin/virtualenvwrapper.sh
    
    1. 让配置生效:
    source ~/.bash_profile
    

    这时,出现了如下问题:

    /usr/bin/python: No module named virtualenvwrapper
    virtualenvwrapper.sh: There was a problem running the initialization hooks.
    
    If Python could not import the module virtualenvwrapper.hook_loader,
    check that virtualenvwrapper has been installed for
    VIRTUALENVWRAPPER_PYTHON=/usr/bin/python and that PATH is
    set properly.
    

    原因分析

    从报错信息VIRTUALENVWRAPPER_PYTHON=/usr/bin/python and that PATH is set properly.这一句话来看,是环境指向python2的路径,所以我们只需要将这个环境变量修改为python3的路径即可。

    解决办法

    1. 打开配置文件vim ~/.bash_profile
    2. 在配置文件中添加一行代码export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3
    3. 让配置生效source ~/.bash_profile

    大功告成, enjoy your code.

    不积跬步,无以至千里。
  • 相关阅读:
    数位dp
    可持久化Trie
    网络流
    欧拉定理
    点、边双,圆方树
    [USACO5.3]窗体面积Window Area
    6.2三道模拟
    BZOJ2054 疯狂的馒头
    [USACO5.1]夜空繁星Starry Night
    [USACO5.1]乐曲主题Musical Themes
  • 原文地址:https://www.cnblogs.com/DeaconOne/p/12610844.html
Copyright © 2011-2022 走看看