쿠버네티스 2025. 3. 4. 21:58

snap을 이용해 설치하는 방법

# 설치
sudo snap install kubectl --classic

# 실행
sudo kubectl

또는, curl로 binary를 다운받아 설치하는 방법

curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
mv kubectl /usr/bin
chmod 755 /usr/bin/kubectl



posted by 구닥다리 엔지니어
:
OS/Linux 2019. 10. 31. 22:27

miniconda 설치

환경

  • OS : CentOS 6,7

설치

Miniconda2 설치

yum install -y bzip2
wget https://repo.anaconda.com/miniconda/Miniconda2-latest-Linux-x86_64.sh
bash Miniconda2-latest-Linux-x86_64.sh << EOF

yes                # 약관동의
/path/to         # base 경로
yes
EOF

Miniconda3 설치

yum install -y bzip2
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh << EOF

yes
/path/to         # base 경로
yes
EOF

설치가 완료되면, ~/.bashrc에 conda를 초기화하는 코드가 추가됩니다.

.bashrc 파일을 다시 로드하거나, 다시 로그인을 하면 conda 명령을 사용할 수 있게됩니다.

conda update conda
conda -V

'OS > Linux' 카테고리의 다른 글

rpm 중복 패키지 삭제하기  (0) 2015.02.05
postfix 메일 큐 삭제  (0) 2015.01.14
vi - 전체 삭제  (0) 2014.12.12
iso 파일 마운트  (0) 2014.10.29
apt 패키지 관리자 사용하기  (0) 2014.10.28
posted by 구닥다리 엔지니어
:
programming/ruby 2017. 9. 15. 11:42



.class

python에서 type()과 같이 루비에서 변수의 자료형을 확인하는 방법이다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
irb(main):001:0> a = 1
=> 1
irb(main):002:0> a.class
=> Fixnum
irb(main):003:0> b = "string"
=> "string"
irb(main):004:0> b.class
=> String
irb(main):005:0> c = ["a","b","c"]
=> ["a", "b", "c"]
irb(main):006:0> c.class
=> Array
irb(main):007:0> d = {"a": 1, "b": 2}
=> {:a=>1, :b=>2}
irb(main):008:0> d.class
=> Hash
 

.kind_of?() 

타입이 일치하는지 확인할 경우에 사용한다.
1
2
3
4
5
6
7
8
9
10
11
12
irb(main):009:0> d.class
=> Hash
irb(main):010:0> d.kind_of?(String)
=> false
irb(main):011:0> d.kind_of?(Hash)
=> true
irb(main):012:0> c.class
=> Array
irb(main):013:0> c.kind_of?(String)
=> false
irb(main):014:0> c.kind_of?(Array)
=> true



'programming > ruby' 카테고리의 다른 글

ruby - 파일 종류 검사  (0) 2014.11.04
3항 연산자 사용 "?:"  (0) 2014.08.06
posted by 구닥다리 엔지니어
: