第一步:安装[Homebrew],Homebrew其实就是一个软件包管理器
安装步骤
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
第二步:
清除Mac下你的所有.NET Core系列的安装包,防止安装发生问题
Remove all previous versions of .NET Core from your system by using [this script]
#!/usr/bin/env bash
#
# Copyright (c) .NET Foundation and contributors. All rights reserved.
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
#
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
current_user=$(whoami)
if [ $current_user != "root" ]; then
echo "$(basename "$0") uninstallation script requires superuser privileges to run"
exit 1
fi
# this is the common suffix for all the dotnet pkgs
dotnet_pkg_name_suffix="com.microsoft.dotnet"
dotnet_install_root="/usr/local/share/dotnet"
dotnet_path_file="/etc/paths.d/dotnet"
remove_dotnet_pkgs(){
installed_pkgs=($(pkgutil --pkgs | grep $dotnet_pkg_name_suffix))
for i in "${installed_pkgs[@]}"
do
echo "Removing dotnet component - \"$i\""
pkgutil --force --forget "$i"
done
}
remove_dotnet_pkgs
[ "$?" -ne 0 ] && echo "Failed to remove dotnet packages." && exit 1
echo "Deleting install root - $dotnet_install_root"
rm -r "$dotnet_install_root"
rm "$dotnet_path_file"
echo "dotnet packages removal succeeded."
exit 0
将这个脚本文件在Terminal里执行以下就ok了
老司机略过这里哈!
在执行的脚本的过程中你有可能会遇到的问题:
1.Mac新手不会制作脚本文件,没关系打开文本编辑器 把上面的脚本代码粘贴进去,另存为xx.sh文件,.sh文件代表的就是shell文件,保存之后如果不知道怎么在Terminal里执行,可以直接把文件拖到里面回车进行执行。
2.你还有可能遇到 permission denied: ./xx.sh,权限不够 修改脚本文件的权限 chmod 777 xx.sh
3.即便权限修改成功了,你还有可能会遇到 xx.sh uninstallation script requires superuser privileges to run,没关系 我们可以在脚本文件前面加上sudo 超级权限。
最后成功会直接提示 dotnet packages removal succeeded.
第三步
Install the official PKG
The best way to install .NET Core on OS X is to use the official PKG package. This installer will install the tools and put them on your PATH.
直接点击下载package,然后修改mac的PATH变量 ,然后创建一个文件夹用来跑官网的demo ,然后在Terminal里输入dotnet new,这里感谢我同事的帮助,简书达人alighters。
第四步
在Terminal里输入dotnet restore 等待下载相关的系统库
下载完成之后 会告诉你 下载了哪一些系统库
第五步
在Terminal里输入dotnet run
哈哈 最后我们就可以愉快的在mac上玩耍啦 !
下一章将写在mac下使用vscode开发.net程序
还请大神多指点,若有错误的地方指出来我会及时改正,有问题大家也可以相互探讨。