I'm a beginner at Django Web Framework. At the beginning when I start Django project I didn't see venv
folder like on the picture on the left. I didn't have bin
, lab
, .gitignore
and pyvenv.cfg
files on the right picture.
When I made new env
I see venv
folder but also there are duplicate bin and lib folders. All I want for now is when I start new Django project is to have one VENV folder and that it's gonna be my only enviornment and also bin and lab folders be in venv folder.
What I try is this: That was the commands I enter on my MAC.
pip install virtualenv
virtualenv venv
source venv/bin/activate
That made a new env and folder venv
. But I don't want to have another basic environment with name of the project like on the picture on the right. I don't want to have in project folder bin and lib folder also.