일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- 우분투 24
- bulma
- 우분투
- Ruby on Rails
- with_indifferent_access
- Rails
- 사용중인포트검색
- 오랜지파이
- after_save
- Orange Pi 3B
- change_column
- Java
- change_column_null
- Migrate
- mac
- 주차장 시스템
- 이것이 자바다
- docket
- MySQL
- Kotlin
- ubuntu
- install
- ruby #string #strip #split #gsub
- after_update
- RUBY
- 쿠버네티스
- Time.znoe.now
- docker
- Visual Studio Code
- 설치
- Today
- Total
목록설치 (3)
중고 신입이 개발해보기..
우분투에 도커설치는 정보가 많아서.. 검색하면 쉽게 알수 있다.. 순서되로 실행하면 설치가 완료된다. $ sudo apt-get update$ sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"$ sudo apt-get install docker..
$ sudo add-apt-repository ppa:deadsnakes/ppa $ sudo apt-get update 확인.. $ apt list | grep python3.12 $ sudo apt install python3.12 $ python3.12 --version Python 3.12.0 $ ls /usr/bin/ | grep python python3 python3.10 python3.12 현재는 이렇게 설치되어 있다. $ sudo update-alternatives --config python update-alternatives: 오류: python에 대한 대안이 없습니다 등록을 안했으니 이렇게 나온다. 등록을 하자 $ sudo update-alternatives --install /usr..

mac에 go를 설치 https://golang.org/ The Go Programming Language Download Go Binary distributions available for Linux, macOS, Windows, and more. // You can edit this code! // Click here and start typing. package main import "fmt" func main() { fmt.Println("Hello, 世界") } Hello, World! Conway's Game of Life Fibonacci golang.org 로 들어가면 .. https://golang.org/dl/ 알맞는거 받아서 설치하면된다. $ go version go version g..