how to solve “bad interpreter: Too many levels of symbolic links”

前端 未结 6 1935
野趣味
野趣味 2020-12-09 20:25

I am trying to install numpy in a virtual environment that I created. I used the following series of commands to create and activate and then installing a local version of n

6条回答
  •  误落风尘
    2020-12-09 20:49

    I had the same issue, and solved it simply by removing the old env file with rm -rf env. Then I created a new environment with virtualenv env, followed by installing the requirements, normally pip install -r requirements.txt, then I was able to run my app successfully.

提交回复
热议问题