1. 도커란?

  리눅스의 응용 프로그램들을 소프트웨어 컨테이너 안에 배치시키는 일을 자동화하는 오픈 소스 프로젝트 

  (출처 : 위키백과)

 

2. 설치 

  해당 명령을 우분투 터미널(Terminal)에 입력 한다. 

 

    #저장소 정보 최신화

  2.1 sudo apt-get update

 

    # 도커 작동에 필요한 패키지 설치 

  2.2 sudo apt-get install apt-transport-https ca-certificates curl software-properties-common

   

    # Docker GPG 키 추가

  2.3 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

 

    #도커 저장소 정보 추가(arch=값은 설치 환경에 따라 다름) 

  2.4 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"

    

    #도커 저장소 정보를 추가 했기 때문에 실행 해야 도커 관련 정보 수집 가능 

  2.5 sudo apt-get update

    

    #도커 최신 버전 설치 

  2.6 sudo apt-get install docker-ce docker-ce-cli containerd.io

 

 3. 명령어 

    링크 참조 =>  docs.docker.com/engine/reference/commandline/docker/

 

docker

docker: The base command for the Docker CLI.

docs.docker.com

 

설치 방법 참조

  => docs.docker.com/engine/install/ubuntu/

 

Install Docker Engine on Ubuntu

 

docs.docker.com

 

   

 

'0x002 OperatingSystem > 02. Linux' 카테고리의 다른 글

[tip] ptrace operation not permitted 해결 방법  (0) 2018.07.14
[tip] echo $?  (0) 2018.06.30
[Theory] ELF 파일 형식  (0) 2018.01.10
[Theory] LD_PRELOAD 환경 변수  (0) 2018.01.08
[Theory] /proc  (0) 2018.01.08

pandas는 데이터 조작 및 분석을 위한 파이썬 라이브러리 

pandas.pydata.org/

 

pandas - Python Data Analysis Library

pandas pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language. Install pandas now!

pandas.pydata.org

자주 사용하는 유용한 함수 2가지 정리 

 

1. info()

 => 데이터프레임의 각 열의 이름, 데이터 갯수와 타입 등 정보를 출력

 

2. describe()

 => 열에 대한 통계를 출력(평균, 최소, 최대, 표준편차 등)

'0x005 Machine learning > 01. Python' 카테고리의 다른 글

[Numpy] boolean indexing  (0) 2021.01.02

넘파이 배열은 True, False 값을 통해 행을 선택 할 수 있다. 

 

ex)

 arr = np.array(['A', 'B', 'C', 'D',])

 print(arr[[True, True, False, False]])

 

 => ['A' 'B'] 

'0x005 Machine learning > 01. Python' 카테고리의 다른 글

[pandas] info() / describe()  (0) 2021.01.04

+ Recent posts