LANGUAGE/!$%!% ERROR NOTE 2016. 11. 23. 10:25

!markdown


# Ruby



```sh

gem install compass

```


compass를 설치하기 위해 위와 같이 명령을 실행하였는데, 


아래와 같이 에러가 발생하였다.




### Error (에러)


```

ERROR:  Could not find a valid gem 'compass' (>= 0), here is why:

          Unable to download data from https://rubygems.org/ - SSL_connect retur   ned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (   https://api.rubygems.org/specs.4.8.gz)

```




### Problem (문제)


기본 설정되어 있는 Repository로 연결이 불가한 상태이다.


URL이 잘못되었을 수도 있고 여러 문제가 있을 것이다.




### Solved (해결)


```sh

gem install compass -r --source http://rubygems.org/

```



### 참고


Ruby Installer For Windows(루비 윈도우버전 다운로드) : [http://rubyinstaller.org/downloads/](http://rubyinstaller.org/downloads/)