mkvirtualenv: Too many levels of symbolic links

前端 未结 8 1162
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-01 09:38

I am running virtualenv burrito and getting an error that there are too many levels of symbolic links. I have no idea what that means.

mkvirtualenv --python          


        
8条回答
  •  抹茶落季
    2021-01-01 10:26

    File "/Users/croberts/? seems you're using Windows. Consider using 'virtualenvwrapper-win'. The latest version is 1.2.0 which support python 2 up to 3.4. I've used it without any problems. If you use several versions of python on your computer, you can switch between them using 'pywin'.

    For making new virtualenv:

    C:\Users\your_directory>mkvirtualenv neo
    Using base prefix 'C:\\Python34'
    New python executable in neo\Scripts\python.exe
    Installing setuptools, pip...done.
    

    For view existing virtualenv:

    C:\Users\your_directory>lsvirtualenv
    
    dir /b /ad "C:\Users\your_directory"
    =========================================================================
    env0
    env1
    env2
    neo
    

提交回复
热议问题