J'ai installé .NET Core sur mon Ubuntu 18.04 en utilisant Sudo snap install dotnet-sdk --classic
, mais une fois le processus d'installation terminé, la commande dotnet
ne fonctionne toujours pas. Voici mon journal de console:
long@long-ub1804:~$ Sudo snap install dotnet-sdk
[Sudo] password for long:
error: This revision of snap "dotnet-sdk" was published using classic
confinement and thus may perform arbitrary system changes outside of the
security sandbox that snaps are usually confined to, which may put your
system at risk.
If you understand and want to proceed repeat the command including
--classic.
long@long-ub1804:~$ Sudo snap install dotnet-sdk --classic
dotnet-sdk 2.2.202 from Microsoft .NET Core (dotnetcore✓) installed
long@long-ub1804:~$ dotnet --version
Command 'dotnet' not found, but can be installed with:
Sudo snap install dotnet-sdk
long@long-ub1804:~$ snap list
Name Version Rev Tracking Publisher Notes
chromium 73.0.3683.86 669 stable canonical✓ -
core 16-2.38 6673 stable canonical✓ core
core18 18 782 stable canonical✓ base
docker 18.06.1-ce 321 stable canonical✓ -
dotnet-sdk 2.2.202 32 stable dotnetcore✓ classic
gnome-3-26-1604 3.26.0.20190228 82 stable/… canonical✓ -
gnome-3-28-1804 3.28.0-9-gce87599.ce87599 23 stable canonical✓ -
gnome-calculator 3.32.0+git2.cae338ea 352 stable/… canonical✓ -
gnome-characters v3.32.0+git1.9ff74a2 206 stable/… canonical✓ -
gnome-logs 3.32.0 57 stable/… canonical✓ -
gnome-system-monitor 3.32.0 70 stable/… canonical✓ -
gtk-common-themes 0.1-16-g2287c87 1198 stable/… canonical✓ -
pycharm-community 2019.1.1 123 stable jetbrains✓ classic
long@long-ub1804:~$
Vous devriez essayer la commande suivante
Sudo snap alias dotnet-sdk.dotnet dotnet
Puisque snap
ne fournit pas d'alias automatiques pour dotnet-sdk
.
Cordialement,