23 lines
491 B
Markdown
23 lines
491 B
Markdown
---
|
|
---
|
|
|
|
# Install .net 7.0
|
|
|
|
```bask
|
|
# 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
|