목록중단 (2)
컴공생의 다이어리
Nginx 명령어 Nginx 실행 service nginx start sudo service nginx start sudo systemctl start nginx Nginx 재실행 service nginx restart sudo service nginx restart sudo systemctl restart nginx Nginx 중단 service nginx stop sudo service nginx stop sudo systemctl stop nginx Nginx 상태보기 service nginx status sudo service nginx status ps -ef | grep nginx https://velog.io/@jinho_pca/Nginx-%EB%AA%85%EB%A0%B9%EC%96%B4 N..

주피터 노트북(Jupyter notebook) 사용방법 위의 빨간색 칸이 코드를 입력하는 Cell이라고 한다. 코드 입력 후(cell) 실행방법 1. 명령어를 입력하고 [Ctrl+Enter] 키 [Ctrl+Enter] 키를 누르면 해당 Cell에 있는 명령을 실행 후 끝난다. 2. 명령어를 입력하고 [Shift+Enter] 키 [Shift+Enter] 키를 누르면 현재 Cell에 있는 명령 실행 후 아래에 새로운 Cell을 생성 cell 분리하고 합치기 1. cell 분리 : [Edit→Split cel] 메뉴 주피터 노트북에서 코딩을 할 때 너무 코드가 길어지거나 하면 cell을 분리하고 싶을 것이다. 그럴 때는 [Edit→Split cel] 메뉴를 사용해서 나눌 수 있다. 만일 아래와 같은 코드가 있..