본문 바로가기

전체 글9

VS code + Python 1. Python 확장 프로그램 설치 Ctrl + Shift + B 2. tasks.json { "version": "2.0.0", "tasks": [ { "label": "python3", "type": "shell", "command":"python", "args":["${file}"], "group":{ "kind":"build", "isDefault":true }, "presentation":{ "echo":true, "reveal":"always", "focus":false, "panel":"shared", "showReuseMessage":true, "clear":true } } ] } 2021. 1. 4.
IPython 설치 1.설치 $ pip install ipython $ ipython * 6개월 치 업무를 하루 만에 끝내는 업무자동화 예제 공부 중 2021. 1. 1.
예제 코드 다운로드 1. Git Bash 실행 2. 예제 다운로드 $ git clone https://github.com/needleworm/bhban_RPA needleworm/bhban_RPA 6개월 치 업무를 하루 만에 끝내는 업무 자동화. Contribute to needleworm/bhban_RPA development by creating an account on GitHub. github.com * 6개월 치 업무를 하루 만에 끝내는 업무자동화 예제 공부 중 2021. 1. 1.
Git Bash 설치 1. 설치 * 6개월 치 업무를 하루 만에 끝내는 업무자동화 예제 공부 중 2020. 12. 31.
2. 파이참(PyCharm) 설치 1. 설치 www.jetbrains.com/ko-kr/pycharm/ PyCharm: JetBrains가 만든 전문 개발자용 Python IDE 지능적인 코드 완성, 즉각적인 오류 검사, 빠른 수정 등 다양한 기능을 갖춘 Python 및 Django IDE입니다. www.jetbrains.com * 6개월 치 업무를 하루 만에 끝내는 업무자동화 예제 공부 중 2020. 12. 31.
1. 파이썬 설치 1. 파이썬 다운로드 www.python.org/downloads/windows/ Python Releases for Windows The official home of the Python Programming Language www.python.org 2. 설치 * 6개월 치 업무를 하루 만에 끝내는 업무자동화 예제 공부 중 2020. 12. 31.
Cent OS / root 비밀번호 변경 # root 계정 로그인 su # passwd 입력 후 변경 할 비밀번호로 설정 # reboot 2019. 9. 24.
FTP serve 설치 및 SSH 접속 # yum(Yellow dog Update)을 이용해 vsftpd 패키지를 설치한다 sudo yum install vsftpd -y # 버전을 확인한다 . vsftpd -v # vsftpd 상태를 확인한다. systemctl status vsftpd.service * 시작 및 종료 systemctl start vsftpd.service systemctl stop vsftpd.service # vsftpd (재)시작한다. systemctl restart vsftpd.service # vsftpd 상태를 (재)확인한다. systemctl status vsftpd.service # 21번 포트 LISTEN 상태를 확인한다. netstat -tlpn # 방화벽 상태 확인 (만약 설치가 안되있다면 설치를 하고, .. 2019. 9. 18.
Setup 1. Node.js 설치 및 VS 에디터 설치 https://nodejs.org/ko/ Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org https://visualstudio.microsoft.com/ko/vs/?rr=https%3A%2F%2Fwww.google.com%2F Visual Studio 2019 | 무료 다운로드 Visual Studio에서 코드 완성, 디버깅, 테스트, Git 관리 및 클라우드 배포를 사용하여 코드를 작성할 수 있습니다. 지금 Community를 무료로 다운로드하세요. visualstudio.microsoft.com 2. 권장 플러그인 설치 1. ext inst.. 2019. 5. 16.