Rails 101 安裝問題排除 & 移除相關安裝

由 andy 發表於 六月 18, 2011 / 尚無評論

 後記

其實這些問題的處理方式都是按照錯誤時產生的參考執行的這裡僅稍微紀錄並提供大家參考若有任何錯誤歡迎指教

 

這篇紀錄是因為在決定好好從頭玩一次RoR之前機器已經照著網路的散落的教學文章亂裝機器導致環境有點混亂所以把相關移除的紀錄和照著XDite大步驟安裝時遇到的問題紀錄一下 另外在安裝ImageMagick時的錯誤請參考 另一篇

移除rvm

1. rvm implode
2. gem uninstall rvm
3. rm -Rf /etc/rvmrc ~/.rvmrc

 

查看下面檔案中是否存在 activate RVM 的指令,有的刪除即可 就是安裝時加入的那串

- .bashrc
- .profile
- .bash_profile

 

移除brew

相關指令查詢   參考資料

 

$> rm -rf ~/Library/Caches/Homebrew

 

 

移除pow 

Pow官網

 

執行mysql_install_db 馬上先Error

FATAL ERROR: Could not find ./bin/my_print_defaults

解決辦法如下

 

 

安裝 gem install mysql 時Error

curl: (7) couldn’t connect to host

原因:pidof 相依套件網址連不到,這裡 提供我剛好有下載的壓縮擋

$> brew edit pidof      #pidof 可改打入無法連結該網址的套件名稱

出現如下

 

class Pidof < Formula

url ‘http://www.nightproductions.net/downloads/pidof_source.tar.gz

homepage ‘http://www.nightproductions.net/cli.htm’

md5 ’663763ee1feb0596fa3731aafa7e1880′

version ’0.1.4′

 

def install

system “make all”

man1.install gzip(“pidof.1″)

bin.install “pidof”

end

end

把url 換成  下載下來的檔案路徑   ex   :   ‘file:///~/Library/Caches/Homebrew/pidof_source.tar.gz’

在執行一次安裝即可

brew 失敗時請善用 brew doctor 和brew missing 會告訴你該怎麼處理

附上查詢Mysql版本指令 mysql -V

繼續Error

 

Enter current password for root (enter for none):

/usr/local/Cellar/mysql/5.5.10/bin/mysql_secure_installation: line 85: .my.cnf.4387: Permission denied

/usr/local/Cellar/mysql/5.5.10/bin/mysql_secure_installation: line 86: .my.cnf.4387: Permission denied

/usr/local/Cellar/mysql/5.5.10/bin/mysql_secure_installation: line 87: .my.cnf.4387: Permission denied

/usr/local/Cellar/mysql/5.5.10/bin/mysql_secure_installation: line 89: .my.cnf.4387: Permission denied

/usr/local/Cellar/mysql/5.5.10/bin/mysql_secure_installation: line 58: .mysql.4387: Permission denied

/usr/local/Cellar/mysql/5.5.10/bin/mysql_secure_installation: line 60: .mysql.4387: No such file or directory

處理:一般權限問題 就斟酌把/usr/local/Cellar/mysql/5.5.10/bin/  目錄權限開一下

 

後續安裝總算都被炸完了LOL

 

 

 

 

 

  

關於作者

喜愛閱讀心理學與程式,資訊技術相關書籍,電影偏愛血淋淋,需要動腦的懸疑解謎,災難科幻類型.平時運動:游泳,慢跑等...最愛的一句話: Divide and Conquer! 無法掌握現在,如何談及未來!目前職業是程式設計師.

評論

此文章尚無評論。

發表評論

*