0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【rails バージョン管理】 rails バージョン ダウングレード 

Last updated at Posted at 2020-07-16

##【あらすじ】
いきなり、rails new が効かなく、固まった。。。。

mac.terminal
Fetching sassc 2.4.0
Installing sassc 2.4.0 with native extensions

上記の箇所で固まって進まない。。。なぜ。。。

##【原因】
####railsのバージョンアップグレードをした為

##【解決法】
調べてみる解決法は、たくさんあるのですが、
私は**「railsのバージョンをひとつ前に戻すことにしました」**
試しにバージョン上げただけなので、、

mac.terminal

$rails -v 
 Rails 6.0.3.2   // <- railsの現在のバージョンが表示されます①

$ gem uninstall rails 
Select gem to uninstall:
 1. rails-5.2.3
 2. rails-5.2.4
 3. rails-5.2.4.1
 4. rails-5.2.4.2
 5. rails-5.2.4.3
 6. rails-6.0.3.2
 7. All versions
> 6     // <- アンインストールしたいバージョンを選択します②

$ gem uninstall railties -v '6.0.3.2'
Continue with Uninstall? [yN]  y  // <- 「y」を入力③

以上!!!

他にも
sassc gemをいじる。
GCCのバージョンを上げる等解決法はあります。

##【合わせて読みたい】

■他解決法について
https://teratail.com/questions/231820

■3分でできるRailsダウングレード
https://qiita.com/Hassan/items/eef26c870eb26a0c68e0

■【devise】 rails g devise:install ができない、、時こそ!!
https://qiita.com/tanaka-yu3/items/8a2002921cda080907f8

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?