`dyld: Library not loaded` error preventing virtualenv from loading

前端 未结 1 1065
你的背包
你的背包 2020-12-02 19:27

When I tried creating a virtual environment with python using the command virtualenv venv from Terminal, I got the following error:

Using base          


        
相关标签:
1条回答
  • 2020-12-02 19:45

    I had the exact same error message. Ray Donnelly at Continuum Analytics Support Group provided the following solution, which resolved the issue for me:

    When you pip installed virtualenvwrapper, pip will have installed virtualenv for you as it is a dependency. Unfortunately, that virtualenv is not compatible with Anaconda Python. Fortunately, the Anaconda Distribution has a virtualenv that is compatible. To fix this:

    pip uninstall virtualenv
    conda install virtualenv
    

    can't get virtualenv to work with anaconda3 v4.3 on mac

    0 讨论(0)
提交回复
热议问题