44 lines
993 B
Markdown
44 lines
993 B
Markdown
# Quick Fix for .NET SDK Installation
|
|
|
|
## Problem
|
|
The installation failed because `dotnet-sdk-6.0` is not available in default Ubuntu 24.04 repositories.
|
|
|
|
## Solution
|
|
|
|
Run these commands to fix and continue:
|
|
|
|
```bash
|
|
# Add .NET backports repository
|
|
sudo add-apt-repository -y ppa:dotnet/backports
|
|
sudo apt update
|
|
|
|
# Install .NET SDK 6.0
|
|
sudo apt install -y dotnet-sdk-6.0
|
|
|
|
# Continue with remaining dependencies
|
|
sudo apt install -y libc++-dev libc++abi-dev
|
|
```
|
|
|
|
## Then Continue Installation
|
|
|
|
After fixing the .NET issue, you can either:
|
|
|
|
**Option 1: Continue manually from where it left off**
|
|
```bash
|
|
# The script should continue from Step 3 (Git LFS setup)
|
|
cd ~
|
|
git lfs install
|
|
|
|
# Then continue with the rest of the installation steps
|
|
```
|
|
|
|
**Option 2: Restart with fixed script**
|
|
```bash
|
|
# The script has been fixed, you can restart it
|
|
cd /home/intlc/projects/metaverseDubai
|
|
./scripts/install_ue5_5.4.1_auto.sh
|
|
```
|
|
|
|
The fixed script will now automatically handle the .NET repository setup.
|
|
|