Where do I put my python files in the venv folder?

后端 未结 2 552
温柔的废话
温柔的废话 2020-12-30 20:36

(Probably a noob question, but I didn\'t find a solution after googling for 20 minutes.)

I created a new pure Python project with PyCharm which yie

2条回答
  •  情话喂你
    2020-12-30 20:59

    The virtual environment manages files which aren't yours. It doesn't care how you manage your own files. Put them wherever makes sense to you, just not anywhere inside the venv directory tree. Common solutions include directly in myproject, or in myproject/src.

提交回复
热议问题