Mac OS 环境下 安装 Asp.Net及使用Yeoman 创建Asp.Net 项目

本文是按照英文原文:Installing ASP.NET 5 On Mac OS安装时遇到的问题的总结Blog。

原文提示如下:

Installing ASP.NET 5 On Mac OS X
By Steve Smith

ASP.NET 5 runs on the .NET Execution Environment (DNX), which is available on multiple platforms, including OS X. This article describes how to install DNX, and therefore ASP.NET 5, on OS X, using Homebrew.

In this article:
Install ASP.NET 5 on OS X
Install ASP.NET 5 on OS X
ASP.NET 5 requires DNX, which is installed and managed by the .NET Version Manager (DNVM). The DNVM is easily installed using a tool called Homebrew, which will also install the correct version of Mono for OS X.

Install Homebrew
The first step is to install Homebrew if it‘s not already installed. This can be done from a Terminal prompt using this script:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

The installer will inform you of the steps it is taking and pause before proceeding. You can learn more about Homebrew here.

he installer will inform you of the steps it is taking and pause before proceeding. You can learn more about Homebrew here.

到这一步,可能会出现 brew 已经安装了。

可以执行:

brew -v

Install the .NET Version Manager (DNVM)
Once Homebrew is installed, install the DNVM by running brew tap aspnet/dnx from a Terminal window. If you need to update your version of DNVM, first run brew untap aspnet/dnx to delete the old commands, and then run the brew tap aspnet/dnx command again to get the updated scripts.

If you had an older version of our Homebrew "tap" configured, you might get the following error: Could not create link for aspnet/dnx/kvm, as it conflicts with aspnet/k/kvm. In that case, simply run brew uninstall kvm to ensure any old versions of kvm are removed, then brew untap aspnet/k to remove the old tap. After that, the brew tap aspnet/dnx command should succeed.

Next, run the command brew install dnvm to install the .NET Version Manager. This will also automatically install the latest DNX package from the https://www.nuget.org/api/v2 feed.

这一步可能出现没有权限的问题:

执行

chown root:wheel /usr/local/bin/brew

然后执行

brew link mono


完成安装。 一切正常了。

Next, run dnvm to verify that your terminal understands this command. If it does not, run the command source dnvm.sh to link it, then try running dnvm again. You should see something like this:

使用Yemoman 创建Asp.net 项目

Mac 上 Asp.net 环境搭建好了以后,自己手动去开始一个 Asp.net 项目,是比较繁琐的。 Yeoman 上已经有 Asp.net 的 generator.

如果没有 Yeoman 先安装 Yeoman, Yeoman 的介绍: http://yeoman.io/ Yeoman下面有各种项目基础框架的generator

> npm install -g yo

安装 Asp.net generator

> npm install -g generator-aspnet

使用 yeoman 开启一个 Asp.Net 项目

> yo aspnet

这里使用 Nacy 框架, Nacy的介绍: http://nancyfx.org/ 一个轻量级的 .Net Web Framework

选择 Nacy ASP.Net Application

同时给一个项目名字,这里用了 NacyApp

项目基础文件框架就生产了。

进入 NacyApp 目录

执行

dnu restore 

加载 依赖

如果 dnu 命令执行失败, commond not found.

执行命令:

source dnvm.sh

如果执行 dnu restore 出现 http://nuget.org/api/v2/ 取依赖包找不到的问题,切换一下源再试试,有两个可用的源:

1. https://www.myget.org/F/aspnetmaster/api/v2/
2. https://www.myget.org/F/aspnetvnext/api/v2/

例如:

dnu restore -s "https://www.myget.org/F/aspnetmaster/api/v2"

可以使用 core visual studio 打开工程,开始写程序。

然后 dnx . kestrel 开始你的 NacyApp 就可以了

这里有个有意思的事情,在terminal 里执行了 dnx . kestrel 后,如果想退出, 执行 ctrl+c 了以后,看到 terminal 没有反应,在浏览器里刷新一下页面, terminal 会出一个错误, 就退出了。

原博客地址:http://zhangsichu.com/blogview.asp?Content_Id=151

http://zhangsichu.com/blogview.asp?Content_Id=153

时间: 2024-10-09 20:00:08

Mac OS 环境下 安装 Asp.Net及使用Yeoman 创建Asp.Net 项目的相关文章

Mac os X下安装Mysql 以及配置方法和常用命令

一.安装mysql 1.mysql下载地址http://dev.mysql.com/downloads/mysql/我的机器是mac 10.8的;所以使用mysql-5.6.10-osx10.7-x86_64.dmg安装包: 2.安装软件包位于硬盘映象(.dmg)文件中,必须首先双击搜索起中的图标来安装该文件.应当安装图像并显示其内容. 注释:在继续安装前,一定要使用MySQL管理器应用程序(在Mac OS X服务器上)或通过命令行的mysqladmin shutdown关闭所有运行MySQL服

Mac OS X 下安装python的MySQLdb模块

参考资料: mac os x下python安装MySQLdb模块   http://www.codeif.com/post/1073/ MAC OSX使用Python安装模块有关问题  http://www.myexception.cn/operating-system/1616547.html 在Mac OS X 中安装好了MySQL和Django,在Django中访问MySQL数据库时,提示“ImportError: No module named MySQLdb”,是由于没有安装Pytho

在Mac OS X下安装Android Studio

在Mac OS X下安装Android Studio只需要几步. 1. 下载Android Studio安装包(.dmg). 2. 打开Terminal输入java -version命令查看是否已安装JDK(1.8版本及以上),如果未安装就去http://www.oracle.com/technetwork/java/javase/downloads/index.html下载安装. 3. 双击Android Studio的dmg安装文件,把Android Studio拖放到Application

Mac OS X 下安装使用 Docker

它依赖于 LXC(Linux Container),能从网络上获得配置好的 Linux 镜像,非常容易在隔离的系统中运行自己的应用.也因为它的底层核心是个 LXC,所以在 Mac OS X 下需要在 VirtualBox 中跑一个精小的 LXC(这里是一个 Tiny Core Linux,完全在内存中运行,个头只约 24MB,启动时间小于 5 秒的 boot2docker) 虚拟机,构建在 VirtualBox 中.以后的通信过程就是 docker --> boot2docker --> co

mac OS X下安装Redis及Thinkphp3.1使用Redis

一.安装Redis 1.安装Homebrew 在终端输入ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/install/master/install)",即可安装Homebrew $ ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/install/master/install)" 2.通过Homebrew安装Redis 在终端输入brew inst

Mac OS X下安装和配置Maven

1.下载Maven 打开Maven官网下载页面:http://maven.apache.org/download.cgi下载:apache-maven-3.5.0-bin.tar.gz 解压下载的安装包到某一目录,比如:/Users/xxx/Documents/maven 2.配置环境变量 打开terminel输入以下命令:vim ~/.bash_profile 打开.bash_profile文件,在次文件中添加设置环境变量的命令export M2_HOME=/Users/xxx/Documen

Mac OS X下安装Vue脚手架(vue-cli)

前言 Vue作为前端三大框架(Angular,React,Vue)之一,号称是最简单,最容易上手的框架,同时也是行内的大趋势,还可以用来开发最火的小程序.具有开发快,双向数据流等特点,有些人认为Vue是Angular和React的结合,既有Angular的模板语法也有React的组件化体系,以至于促使其发展飞快.下面来就来讲讲Vue脚手架(vue-cli)的安装吧. 安装vue(使用npm 推荐) # 全局安装 vue-cli $ npm install --global vue-cli # 创

Mac OS X下安装nvm的方法

最近准备学习一下node.js,到youtube上搞了些视频回家看.结果在ubuntu上面安装nvm都ok了,坑货mac搞不定. 经过不断尝试,google,youtube,终于发现了如何搞定.现特将步骤记录,聊以自慰. 安装node.js原本需要做四步(你要是不进行版本切换,官方有安装给你傻瓜式安装): 1. 安装git # install git first sudo apt-get install git 2. 安装curl # install curl sudo apt-get inst

How to Install wget in OS X如何在Mac OS X下安装wget并解决configure: error:

1.ftp://ftp.gnu.org/gnu/wget/官网下载最新的安装包 wget-1.19.tar.gz 2.打开终端输入 tar zxvf wget-1.9.1.tar.gz 解压缩 3.进入wget所在文件夹 终端输入cd wget-1.9.1 4.终端输入 ./configure 如果出现configure: error: The pkg-config script could not be found or is too old. Make sure it is in your