Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/components/quickstart/Windows.astro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@ const { latestVersion } = Astro.props

<p>You’ll probably need to reboot.</p>

<p>After reboot, install an Ubuntu distro:
<p>After reboot, update your WSL:</p>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm conflicted on this, because of course if you just installed and rebooted, you don't need to update. OTOH we're trying to keep this as simple and straightforward as possible.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Then I think we don't need to add this, assuming that the info on this page is for folks who are completely new to WSL. 🙂

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, you needed it, and there will be others like you who didn't do the WSL install right at the time :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe just make it like a note? If you can't install DDEV, try to update your WSL... something like that.


<Terminal type="powershell" code={`> wsl --update`} />

<p>Keeping WSL updated helps to ensure that DDEV installs successfully.</p>

<p>Then, install an Ubuntu distro:</p>

<Terminal type="powershell" code={`> wsl --install Ubuntu --name DDEV`} />

Expand Down