본문 바로가기

전체 글

(38)
Ubuntu 18.04 - git 셋팅 git 세팅 사용법xxxxxxxxxxsudo apt-get install git-coresudo git config --global user.name "본인 계정 입력"​sudo git config --global user.email "본인 메일 주소 입력"​sudo git config --global color.ui "auto"​git 사용해보기sudo git clone 자신의git레퍼지토리 ​git init​sudo git remote add origin 자신의git레퍼지토리 ​sudo git fetch origin​cd 자신의git레퍼지토리 ​sudo git add -A​sudo git commit -m "system change"​git push -u origin master
Docker_Postgres 설치 Docker Postgresql 출처​xhttps://judo0179.tistory.com/48​Postgresql 받아오기 xxxxxxxxxxdocker pull postgresPostgresql 실행해보기xxxxxxxxxxdocker run -d -p 5432:5432 --name pgsql -e POSTGRES_PASSWORD=mypassword postgresPostgresql 마운트시키고 실행해보기 ( 추후에 껏다켜도 테이블들이 남아있게 하기 위함.)xxxxxxxxxxdocker volume create pgdata​docker run -d -p 5432:5432 --name pgsql -it --rm -v pgdata:/var/lib/postgresql/data -e POSTGRES_PASSW..
Ubuntu 18.04 - Anaconda 설치 1. Download https://www.anaconda.com/distribution/#download-section 2. 권한 설정 및 설치chmod +x Anaconda3-2019.07-Linux-x86_64.sh./Anaconda3-2019.07-Linux-x86_64.sh 3. zsh쉘이라면 ( vim ~/.zshrc 추가 )xxxxxxxxxxexport PATH=$HOME/anaconda3/bin:$PATHxxxxxxxxxxsource ~/.zshrc 4. 가상환경 생성 xxxxxxxxxxconda create -n python36_serving python=3.6 --y 5. 가상환경 접속xxxxxxxxxxsource activate python36_serving 6. 가상환경 정보 확인x..
ubuntu 18.04 - oh my zsh 설치 Oh My Zsh 설치리눅스에서 기본으로 제공되는 bash도 사용하기 좋지만 저는 git과의 연동이나 대소문자 구분 등의 다양한 편의 기능이 있는 zsh을 주로 사용합니다. 이 글에서는 ubuntu 18.04에서 oh-my-zsh을 설치하는 방법을 알아봅니다. Oh-My-Zsh페이지를 참고하였습니다. https://github.com/robbyrussell/oh-my-zsh시스템 기본 프로그램 설치zshOh-my-zsh을 설치하기에 앞서 기본이 되는 zsh을 설치합니다.xxxxxxxxxxsudo apt install -y zshwget or curl자동 설치 스크립트를 받기 위해서는 둘 중 하나가 필요합니다. 18.04에는 wget이 설치 되어있기 때문에 curl을 설치 하지 않아도 됩니다.xxxxxxx..
Python 패키지 내려받는 방법 1. PIPpip freeze > requirements.txt 2. Condaxxxxxxxxxxconda list --export > requirements.txt
ast 함수 사용 String을 dict or list로 변환​ximport ast​​​str_dict = "{'a': 3, 'b': 5}"​print (type(str_dict)) # ​​​convert_dict = ast.literal_eval(str_dict)​print (type(convert_dict)) # ​print (convert_dict['a']) # 3​​
R ( data.table ) aggregation 사용 R ( data.table ) aggregation 사용 ​x​library(data.table);library(reshape2)t = data.frame(col1=c('AAA','AAA','AAA','BBB','BBB'), col2=c('aaa','bbb','ccc','ddd','eee'))t​t1
String Replace 1. replace(old, new, count) -> replace("찾을값", "바꿀값", 바꿀횟수)​xtext = '123,456,789,999'​replaceAll= text.replace(",","")replace_t1 = text.replace(",", "",1)replace_t2 = text.replace(",", "",2)replace_t3 = text.replace(",", "",3)print("결과 :")print(replaceAll)print(replace_t1)print(replace_t2)print(replace_t3)​'''결과 : 123456789999123456,789,999123456789,999123456789999''' 2. 우측부터 변경법 xxxxxxxxxxdef re..