Ubuntu - .net core のインストール 質問する

Ubuntu - .net core のインストール 質問する

新しい.netコアを試してみたいと思います。https://www.microsoft.com/net/coreですが、動作しません。

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 dotnet-dev-1.0.0-preview1-002702 : Depends: dotnet-sharedframework-microsoft.netcore.app-1.0.0-rc2-3002702 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

私はUbuntu 16.04を実行しています。

ベストアンサー1

更新しました最後にご覧ください。(感謝プラサナ

.NET Core は現在、Ubuntu 14.04、16.04、16.10、Linux Mint 17 をサポートしています。

ご確認ください公式ページ詳細については。

現在 (2016 年 5 月) は Ubuntu 14.04 のみがサポートされています。

Ubuntu 15.10にインストールするには、

deb http://security.ubuntu.com/ubuntu trusty-security main

/etc/apt/sources-list へ

完了したら、次の操作を実行してください。

apt-get update

apt-get upgrade

そして再び命令

apt-get install dotnet-dev-1.0.0-preview1-002702a

追加パッケージのインストールを要求されます。「はい」と答えると完了です。

入力してテストする

dotnet --version

楽しむ!

更新しました

おすすめ記事