enter image description here[enter image description here][2]I work with Git Bash, Python, Django in a virtual environment under VS-Code and I have such a problem. When I use the $ python -m django startproject mysite command in the djangogirls directory, two nested mysite directories are created under the djangogirls directory, see a picture. But I would need only one under the djangogirls directory. How should I do that ?
everything I could think of
2
Answers
Quoth the docs for
startproject
:IOW,
(note the trailing
.
to denote the current working directory.)This is expected behviour. To quote the official documentation: