Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- MySQL
- Matplotlib
- 노마드코딩
- 프로그래머스
- 선그래프
- 정보처리기사 c언어
- javascript
- programmers
- 파이썬
- aws jupyter notebook
- type hint
- 알고리즘 스터디
- 가상환경
- pandas
- Selenium
- openCV
- 알고리즘스터디
- 자료구조
- 알고리즘
- String Method
- Algorithm
- 코딩테스트
- Join
- python
- 백준
- NumPy
- dataframe
- 데이터시각화
- Stack
- queue
Archives
- Today
- Total
목록메모리 할당 (1)
조금씩 꾸준히 완성을 향해
[AWS] Jupyter Notebook 할당 메모리 늘리기 (kernel die error 방지)
Jupyter Notebook 할당 메모리 늘리기 aws 서버에서 jupyter notebook을 사용하다 보면 kernel이 죽어 restart 해야 한다는 문구를 자주 볼 수 있다. 이를 방지하기 위한 하나의 방법은 jupyter notebook에 할당할 메모리양을 늘려주는 것이다. 아래의 명령어로 jupyter notebook 설정 파일을 연다. sudo vim /home/ubuntu/.jupyter/jupyter_notebook_config.py 설정 코드에 아래 코드를 추가해 준다. 디폴트 값보다 약 18배 많은 비트 수를 할당하는 코드이다.(인스턴스의 디스크 메모리를 고려하여 적절히 할당) c.NotebookApp.max_buffer_size = 10000000000 esc + :wq! + e..
AWS & Linux
2023. 2. 23. 09:40