27 lines
594 B
Markdown
27 lines
594 B
Markdown
---
|
|
status: "4-Done"
|
|
type: "kanbn"
|
|
created: "2024-01-06T01:22:07.432Z"
|
|
updated: "2024-01-06T01:22:07.432Z"
|
|
---
|
|
|
|
# Install .net 7.0
|
|
|
|
```bash
|
|
# https://learn.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#scripted-install
|
|
cd /home/unity4
|
|
wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
|
|
chmod +x ./dotnet-install.sh
|
|
./dotnet-install.sh --channel 7.0
|
|
export DOTNET_ROOT=$HOME/.dotnet
|
|
export PATH=$PATH:$HOME/.dotnet:$HOME/.dotnet/tools
|
|
ln -s /home/unity4/.dotnet/dotnet /usr/local/bin/dotnet
|
|
dotnet --info
|
|
```
|
|
|
|
## Sub-tasks
|
|
|
|
- [x] phares3757
|
|
- [x] unity4
|
|
- [x] unity5
|