검색결과 리스트
글
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/)
'LANGUAGE > !$%!% ERROR NOTE' 카테고리의 다른 글
[ERwin9] Mart version validation failed. Details: Mart Server is not reachable, please check network and mart service health. (0) | 2016.12.15 |
---|---|
[Java] java.lang.IllegalArgumentException: named capturing group has 0 length name (0) | 2016.12.01 |
[Oracle] ORA-09817 write to audit file failed (0) | 2016.11.02 |
[Oracle] EXP-00091 (1) | 2016.11.01 |
[Oracle] ORA-00984: column not allowed here (0) | 2016.10.21 |