Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- fixed
- rbenv
- route
- Remote
- Basic
- html
- css
- git branch
- Process
- Express
- Teamwork
- workflow
- linux
- Nodejs
- Reset
- React
- git
- Develop
- WEB
- crud
- sourcetree
- Merge
- Box Model
- 소스트리
- commit
- git checkout
- relative
- Rebase
- Advanced
- root
Archives
- Today
- Total
목록Ruby (2)
Codesigner
[Ruby] rbenv로 ruby 버전 변경이 안될 때
rbenv를 활용하여 ruby 버전을 변경할 수 있는데, 해당 변경이 제대로 이뤄지지 않는 때가 있다. 이는 PATH 설정을 해줌으로써 간단히 해결할 수 있다. 먼저 ~/.zshrc를 편집하자. $ vim ~/.zshrc 그런 다음 아래 두 줄을 추가해주자. export PATH="$HOME/.rbenv/bin:$PATH" eval "$(rbenv init -)" 저장 후 터미널을 껏다가 켜거나 혹은 source ~/zshrc 명령을 해주면 ruby버전이 rbenv가 설정한 버전에 맞게 변경된다.
Ruby
2019. 9. 11. 02:23
[Ruby] MacOS에 Ruby 설치하는 법
Github page를 활용하기 위해 내 맥북에 Ruby를 설치할 일이 생겼는데, 나중에 설치할 때도 참고하기 위해 위 과정을 정리해보려고 한다. Ruby 설치하기 먼저, 루비를 다운로드하기 위해 공식 다운로드 페이지로 이동하자. https://www.ruby-lang.org/en/downloads/ Download Ruby Here you can get the latest Ruby distributions in your favorite flavor. The current stable version is 2.6.4. Please be sure to read Ruby’s License. Ways of Installing Ruby We have several tools on each major platfor..
Ruby
2019. 9. 11. 02:07