From f28c397623b8c54a07d35bc97d1788ca104492ef Mon Sep 17 00:00:00 2001 From: Jessie Mongeon Date: Mon, 9 Dec 2024 13:13:36 -0600 Subject: [PATCH] fix wsl instrucs --- .../quickstart/first-smart-contract.mdx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/developer-docs/getting-started/quickstart/first-smart-contract.mdx b/docs/developer-docs/getting-started/quickstart/first-smart-contract.mdx index de2e03f105..05ca775b97 100644 --- a/docs/developer-docs/getting-started/quickstart/first-smart-contract.mdx +++ b/docs/developer-docs/getting-started/quickstart/first-smart-contract.mdx @@ -111,10 +111,21 @@ project. #### Prerequisites +`dfx` is not natively supported on Windows. You will need to install a Linux instance via Windows Subsystem for Linux and run all commands within that Linux instance. + Download and install Windows Subsystem for Linux.
- Download and install Node.js within your WSL environment. + Open a WSL terminal window. +
+
+ Download and install a Linux distribution (i.e., Ubuntu) using Windows Subsystem for Linux: wsl --install -d ubuntu +
+
+ Open the WSL Linux environment. Run all following commands within this environment. +
+
+ Download and install Node.js within your WSL Linux environment. ---------