试图在osx上设置radiant cms

时间:2013-05-22 02:45:23

标签: mysql ruby-on-rails radiant

我正在尝试安装radiant cms,当我尝试运行bundle exec rake db:bootstrap我得到以下输出。现在我选择mysql作为我的数据库,但我不确定它是否设置正确或不连接。对不起如果听起来我不知道我在说什么,这对我来说还是有点新鲜。

Gem.source_index called from /Users/anderskitson/.rbenv/versions/1.9.3-p374/lib/ruby/gems/1.9.1/gems/rails-2.3.18/lib/rails/gem_dependency.rb:21.
rake aborted!
uninitialized constant MysqlCompat::MysqlRes
/Users/anderskitson/Sites/Bray Jorstad/config/environment.rb:14:in `<top (required)>'
Tasks: TOP => db:bootstrap => db:initialize => environment
(See full trace by running task with --trace)

1 个答案:

答案 0 :(得分:0)

  1. 安装rvm bash -s stable&lt; &lt;(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer
  2. setup rvm echo'[[-s“$ HOME / .rvm / scripts / rvm”]]&amp;&amp;资源 “$ HOME / .rvm / scripts / rvm”'&gt;&gt; 〜/ .bash_profile source~ / .bash_profile
  3. 下载&amp;安装Xcode打开 https://developer.apple.com/downloads/download.action?path=Developer_Tools/xcode_4.1_for_lion/xcode_4.1_for_lion.dmg 打开〜/ Downloads / xcode_4.1_for_lion.dmg打开“/ Volumes / Install 的xcode / InstallXcodeLion.pkg“
  4. 安装ruby&amp; rubygems rvm install 1.9.3#或1.9.2或1.8.7
  5. 为您的项目设置一个隔离的环境rvm使用--create 1.9.3@project-name
  6. 安装radiant gem install radiant --pre --no-ri --no-rdoc# 安装Radiant 1.0 RC4
  7. 创建一个新的辐射项目radiant~ / project-name cd 〜/ project-name bundle install bundle exec rake db:bootstrap
  8. 安装可选的剪辑依赖项brew install ghostscript imagemagick#或port install ... brew install --use-gcc ffmpeg# 或端口安装ffmpeg
  9. 启动新的辐射应用程序包exec脚本/服务器
  10. 礼貌:

    https://github.com/radiant/radiant/wiki/Installing-on-Mac-OS-X

    我今天(2013年5月22日)在OSX(10.7.5)做了这一切,一切正常。只是不要乱用你的宝石文件。在开发时将数据库保持为sqlite3,或者至少直到您完成所有工作。

    祝你好运!