2012-05-30 89 views
0

我使用rvm並按照說明安裝它https://rvm.io//rvm/install/Ubuntu 12.0.4 rails昨天工作。不是今天

昨天我工作的時候一切都很好。

今天,當我試圖啓動rails s它說

The program 'rails' is currently not installed. You can install it by typing: 
sudo apt-get install rails 

我不知道如何使它重新工作。當我運行rvm gem list它給了我這樣的:

*** LOCAL GEMS *** 

bundler (1.1.4) 
rake (0.9.2.2) 
rubygems-bundler (1.0.2) 
rvm (1.11.3.3) 

*** LOCAL GEMS *** 

actionmailer (3.2.3) 
actionpack (3.2.3) 
activemodel (3.2.3) 
activerecord (3.2.3) 
activeresource (3.2.3) 
activesupport (3.2.3) 
ansi (1.4.2) 
arel (3.0.2) 
builder (3.0.0) 
bundler (1.1.4) 
coffee-rails (3.2.2) 
coffee-script (2.2.0) 
coffee-script-source (1.3.3) 
erubis (2.7.0) 
execjs (1.4.0) 
hike (1.2.1) 
i18n (0.6.0) 
journey (1.0.3) 
jquery-rails (2.0.2) 
json (1.7.3) 
mail (2.4.4) 
mime-types (1.18) 
multi_json (1.3.5) 
polyglot (0.3.3) 
rack (1.4.1) 
rack-cache (1.2) 
rack-ssl (1.3.2) 
rack-test (0.6.1) 
rails (3.2.3) 
railties (3.2.3) 
rake (0.9.2.2) 
rdoc (3.12) 
rubygems-bundler (1.0.2) 
rvm (1.11.3.3) 
sass (3.1.19) 
sass-rails (3.2.5) 
sprockets (2.1.3) 
sqlite3 (1.3.6) 
thor (0.14.6) 
tilt (1.3.3) 
treetop (1.4.10) 
turn (0.9.5) 
tzinfo (0.3.33) 
uglifier (1.2.4) 

因此,沒有任何人有任何想法,爲什麼軌停止工作?我認爲這與我昨天關閉電腦有關。

+0

什麼'寶石list'的結果呢?你確定你使用的是正確的ruby版本和正確的gemset嗎? (嘗試'rvm list'和'rvm gemset list'來查看它是否是您的預期結果) – PeterWong

+0

它必須是您的系統路徑。在那裏設置欄杆環境。 –

+0

請包括'rvm get stable','rvm info'和'gem env'的輸出,我的猜測是你的'PATH'在RVM設置之後被重新輸入。 – mpapis

回答

1

如果你以root身份安裝它,你需要做source /etc/profile

如果你安裝了它爲自己的個人用戶,您應該添加~/.rvm/scripts$PATH

+0

謝謝,這有效! – Magesh

相關問題