데비안에 .Net dotnet 설치

데비안에 .Net dotnet 설치

./dotnet-install.sh를 다운로드하고 성공적으로 설치했습니다.

$ ./dotnet-install.sh -c Current
dotnet-install: Note that the intended use of this script is for Continuous Integration (CI) scenarios, where:
dotnet-install: - The SDK needs to be installed without user interaction and without admin rights.
dotnet-install: - The SDK installation doesn't need to persist across multiple CI runs.
dotnet-install: To set up a development environment or to run apps, use installers rather than this script. Visit https://dotnet.microsoft.com/download to get the installer.

dotnet-install: .NET Core SDK version 5.0.207 is already installed.
dotnet-install: Adding to current process PATH: `/home/tesla/.dotnet`. Note: This change will be visible only when sourcing script.
dotnet-install: Note that the script does not resolve dependencies during installation.
dotnet-install: To check the list of dependencies, go to https://docs.microsoft.com/dotnet/core/install, select your operating system and check the "Dependencies" section.
dotnet-install: Installation finished successfully.

경로를 추가했습니다

└─$ 내보내기 경로=$PATH:/home/tesla/.dotnet

닷넷 --버전 5.0.207

두 가지 질문이 있습니다.

먼저, 컴퓨터를 다시 시작할 때마다 두 번째 vs 코드를 다시 설치해야 합니다. 터미널에 dotnet --version 명령이 표시되지 않습니다.

"Command 'dotnet' not found, but can be installed with:
sudo snap install dotnet-sdk   # version 5.0.401, or
sudo apt  install dotnet-host
See 'snap info dotnet-sdk' for additional versions. "

vscode 터미널에서 경로를 설정하면 vscode를 다시 시작한 후 dotnet 명령이 인식되지 않습니다.

답변1

~/.profile 또는 ~/.bashrc 파일에 PATH를 추가해야 합니다.

PATH=$PATH:/home/tesla/.dotnet

지금 변경사항 업데이트

source ~/.profile 
or
source ~/.bashrc

답변2

dotnet을 수동으로 설치할 수 있습니다.

1- tarball을 통해 설치:

wget https://dotnetcli.azureedge.net/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-linux-x64.tar.gz
sudo mkdir -p /usr/share/dotnet
sudo tar -zxf dotnet-sdk-5.0.207-linux-x64.tar.gz -C /usr/share/dotnet
sudo ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet

2- .deb 파일 설치

.deb파일 을 다운로드할 수 있습니다.여기에서, 예를 들어 g:

wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb

관련 정보