Skip to content

Commit a123c3b

Browse files
committed
Update installation docs
1 parent 53fff2a commit a123c3b

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,18 @@ dotnet new install StereoKit.Templates
1414
If you don't have the .NET SDK, or the `dotnet` command, you can install this via winget:
1515

1616
```bash
17-
winget install Microsoft.DotNet.SDK.9
17+
winget install Microsoft.DotNet.SDK.10
1818
# Restart the Terminal to refresh your Path variable
1919
```
2020

21-
On Linux, it may be as simple as this! If not, check [Microsoft's instructions](https://learn.microsoft.com/en-us/dotnet/core/install/linux) for installing `dotnet` on your Linux distribution.
21+
On Linux, please do _NOT_ install the .NET package via the OS package manager (`apt-get`, etc.)! These packages do _NOT_ connect to the Android workloads necessary for Android builds! Please instead use [Microsoft's install script](https://learn.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual).
2222

2323
```bash
24-
sudo apt-get install dotnet-sdk-9.0
24+
# From the install script docs
25+
wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
26+
chmod +x ./dotnet-install.sh
27+
28+
./dotnet-install.sh --version latest
2529
```
2630

2731
## Usage

0 commit comments

Comments
 (0)