首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > Ruby Rails >

新建HelloWorld项目时,bundle install无法执行.错误:could not fectch specs from.

2013-04-20 
新建HelloWorld项目时,bundle install无法执行...异常:could not fectch specs from...小弟刚开始学习ROR

新建HelloWorld项目时,bundle install无法执行...异常:could not fectch specs from...
小弟刚开始学习ROR开发,
今天使用railsinstaller-2.2.1一键安装
然后使用rails new HelloWorld新建项目
但是,新建项目最后一行出现异常:
新建HelloWorld项目时,bundle install无法执行.错误:could not fectch specs from.

这是版本信息:新建HelloWorld项目时,bundle install无法执行.错误:could not fectch specs from.

同时:http://localhost:3000也无法出现欢迎页面,提示“该页无法显示”

麻烦大家详细说下...谢谢! rails ruby ror
[解决办法]
first, make sure you can access the https://rubygems.org/
when you use rails to new a project, it will help you to generate some files and folders, the structure like below:

[解决办法]
-- Gemfile

[解决办法]
-- Gemfile.lock

[解决办法]
-- README.rdoc

[解决办法]
-- Rakefile

[解决办法]
-- app

[解决办法]
-- config

[解决办法]
-- config.ru

[解决办法]
-- db

[解决办法]
-- doc

[解决办法]
-- lib

[解决办法]
-- log

[解决办法]
-- public

[解决办法]
-- script

[解决办法]
-- test

[解决办法]
-- tmp
`-- vendor
after created this files, rails will call bundle to install some gems in the Gemfile.
the first line in the Gemfile is source 'https://rubygems.org', of course, you can add any source what you want. but you need to double check this source that can been accessed.
when you installed all gem package in the Gemfile, you can start rails service.
if you lose some one gem, the rails will give you some error information that will told you which gem is lost. just use 'bundle install' to fix these issues.
So your trouble is, at least through your information, you cannot get gem source from https://rubygems.org.
I don't like window version. It alway told me, you lost these thing or lost those,


faint. So change into linux is not bad idea.
hope this can help you.

热点排行