web-dev-qa-db-ja.com

apt-getがWindows 10のUbuntuサブシステムに正常にインストールされた後、ソフトウェアがインストールされない

Sudo apt install golang-1.10-go経由でgoをインストールしましたが、goがインストールされていないとシェルから通知されるため、goを実行できません。 goを再度インストールしようとしました。元のインストールではエラーが表示されなかったため、インストールされていることがわかります。私は過去10年間Linuxを使用していますが、msシステムを使用する必要があり、ubuntuサブシステムで遊んでみたいと思っていますが、このような動作は正常ですか?

rpickhardt@DESKTOP-RQQSLJR:~$ Sudo apt install golang-1.10-go
Reading package lists... Done
Building dependency tree     
Reading state information... Done
golang-1.10-go is already the newest version (1.10-1ubuntu1~16.04.1).
The following package was automatically installed and is no longer required: libfreetype6
Use 'Sudo apt autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
rpickhardt@DESKTOP-RQQSLJR:~$ go 
The program 'go' is currently not installed. You can install it by typing: Sudo apt install golang-go  
2
Rene Pickhardt

コピー https://serverfault.com/questions/894500/program-go-is-currently-not-installed-on-ubuntu-16-04 @Pantherが言ったように:

/ usr/libディレクトリにインストールします。私のコンピューターでは、このsymリンクが問題を修正しました

Sudo ln -s /usr/lib/go-1.9/bin/go /usr/bin/go

3
Rene Pickhardt