윈도우 파이참에서 bash 작업 후 리눅스 서버로 보내면 계속 Line separator 이슈가 났다. 공식 문서 Configuring Line Separators—PyCharm (jetbrains.com) 대로 해도 잠시 뿐 창 끄고 돌아오면 다시 crlf 로 돌아가있다. 찾아보니 git 설정을 변경하면 되었다. 아래 참조 # check current config git config -l # change the value git config core.autocrlf false git config core.eol lf # make sure git config --get core.autocrlf git config --get core.eol # checkout git ls-files -z | xargs -..
대상 독자 - Git 의 대략적인 개념은 알고 계신 분 - Git 설치되어 있는 분 - VScode 에서 쉽게 Git을 조작하기 원하는 분 목차 1. 기존 Repository 가져오기 2. 로컬에서 작업하기 3. 기존 Repository에 병합하기 1. 기존 Repository 가져오기 가장 먼저 repository를 clone하자. `Clone or download` 버튼 누르고 url 복사하자. 쉽다. clone할 로컬 디렉토리를 만들자. 필자는 git init 한 경로에 만들었다. git 설치한 곳에 가면 .git 이렇게 있다. 여기가 master 위치다. 여기서 school 이라는 폴더를 만들었다. VScode를 열고 `ctrl`+`shift`+'p' 로 명령커맨드를 연다. `Git: clone`..
아 진짜... 아침부터 시간날려서 빡친다. ssh연결 후 rmate명령어를 사용해 파일을 보려는데 계속 Couldn't connect to TextMate! 에러가 나왔다. 인터넷에 나와있는 솔루션은 1. 서버를 멈추고 다시 실행하라 (대부분 해결될 것) in vscode press F1 and select Remote:Stop Server in vscode press F1 and select Remote:Start Server 만약 Remote:Stop Server라는 명령어가 없다면, 마켓에 들어가서 "Remote VScode" 설치하면된다. 2. 로컬에서 ssh를 2개이상 접속했을 경우. 하나만 남겨라 (해당없음) solved) localhost 말고 숫자로 지정해라! ssh -R 52698:loc..
내가 찾은 최고의 포스트 https://bluemond.tistory.com/entry/Installation-Ubuntu-1404-LTS-with-VMPlayer 그냥..이 분이 하란대로 하면 잘 됩니다. 잘 모르면 그냥 따라하면됩니다.. 감사합니다 센세 ㅠㅠㅠㅠㅠ 절받으세요 ㅠㅠㅠㅠㅠ 목적 vmware에서 가상환경 만들고 마운트하기 첫 번째 실패 과정 easy install이라니 VMware 좋네. 금방 설치할 수 있을것 같아! (아님) 디폴트 그대로 가즈아 근데 찾아보니 남들다 store 로하더라 ㅎ 망한 원인 저 체크도 디폴트임 이거 해제하세요 ㅠㅠ 오오 뭐야뭐야 한번에 설치하고 마운트까지 잘됐잖아? 호호호 최고다 (마운트는 방법은 이후에 설명할게요) ㅇ 이땐 좋았다 ㅎ.. 하지만 .. 다시 리부..
평소 vscode에서 파이썬 설치해서 잘 쓰다가 주피터를 쓰기위해 아나콘다를 설치하기로 했습니다. 그럼 아나콘다를 설치해봅시다. 공식 아나콘다 다운로드 페이지 Anaconda Python/R Distribution - Anaconda The open-source Anaconda Distribution is the easiest way to perform Python/R data science and machine learning on Linux, Windows, and Mac OS X. With over 11 million users worldwide, it is the industry standard for developing,… www.anaconda.com 저는 현재 파이썬 3.6버전을 쓰고있는데 ..
Hㅏ... 언제나 그렇듯 결론은 간단하고 나는 열심히 삽질을 한다. 리눅스 접속시 VMware 가 아닌 간편하게 putty로 들어가는 방법에 대해 간략히 서술하겠다. 현재 리눅스에 접속할 때 항상 VMware를 써서 들어가는데 간단한 command 를 실행할 때도 이걸 써야하는게 귀찮았다. 로딩기다리기 싫잖아요 다들.. 그래서 putty로 간단히 접속하고 싶었다. 간단히 방법 요약 1. vmware 접속 2. $ sudo -s 3. $ sudo apt-get install ssh 4. $ sudo /etc/init.d/ssh restart 5. $ ifconfig ip 많기도하다... 이러면 무슨 아이피를 넣어야하나 증말 혼돈에 빠지는데 나는 저기서 ens33 의 inet addr:192.168.217...
1. Create a JSON file $ jq -n '{"hello":"world"}' > hello.json jq 라는 툴을 사용한다. 커널에 jq -h 해서 도움말을 보면 아래와 같이 나온다. jq is a tool for processing JSON inputs, applying the given filter to its JSON text inputs and producing the filter's results as JSON on standard output. 여기서 -n 태그의 의미는 use null as the single input value; $ jq -n --arg greeting world '{"hello":$greeting}' > hello.json --arg a v : set va..
Try command : $ curl -X POST -H "Content-Type: application/json" 'http://ubuntu:8999/api?aa=11&bb=22' python script: arg = request.argsProblem AttributeError : None type Cause ... I sent data in json format. but type of request.args is multiDict. That's why python can't find arg and occur AttributeError. Solved arg = request.json