Forgot virtualenv name - how to find the name of the virtual env?

前端 未结 1 594
萌比男神i
萌比男神i 2021-01-12 17:44

I set up a flask site with uwsgi/nginx a while back, and set up a virtualenv.. I\'ve forgotten the name of the venv I set up, and I can\'t find any way to list the virtualen

1条回答
  •  时光取名叫无心
    2021-01-12 18:34

    If it’s definitely in the current directory, try ls */bin/python. Otherwise, ls **/python, or find . -name python. You can, of course, just make a new one, too.

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