In this section, you:
-
Created a virtual environment in the CLI:
Language: Shell$ python3 -m venv .env -
Activated the virtual environment:
Language: Shell$ source .env/bin/activate -
Installed Django inside the virtual environment:
Language: Shell(.env)$ pip install django -
Created a Django project management app inside the existing folder without duplicating the folder structure:
Language: Shell(.env)$ django-admin startproject portfolio . -
Visited the site at
http://localhost:8000
In the next section, you’ll start building a Django application inside the project that you just created.
Martin Breuss RP Team on March 9, 2020
Hi @fredmord, sorry to hear that you haven’t yet solved your issue. Taking a break can often be helpful, but make sure to get back to trying!
Double-check the responses I posted to you further up. The error you are getting tells you that either:
lsdoesn’t show a file calledmanage.py)startprojectcommand, which creates the folder structure and also yourmanage.pyfileMake sure you understand how files and folder structures work and practice using the command-line interface a bit, then come back here and give it another go. You can do it! 💯