Inside your `mysite` folder, run the setup steps necessary for any Django project:
```sh
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
```
Your site is now accessible at `http://localhost:8000`, with the admin backend available at `http://localhost:8000/admin/`.
This sets you up with a new stand-alone Wagtail project.
If you want to add Wagtail to an existing Django project instead, see [Integrating Wagtail into a Django project](/getting_started/integrating_into_django).
There are a few optional packages that are not installed by default. You can install them to improve performance or add features to Wagtail. These optional packages include:
For detailed guidance, see this guide on [how to add Python to your path](https://realpython.com/add-python-to-path/).
### python3 not available
```sh
python3 -m pip install --upgrade pip
> command not found: python3
```
If this error occurs, [the `python3` can be replaced with `py`](https://docs.python.org/3/faq/windows.html#how-do-i-run-a-python-program-under-windows).