Notice
Recent Posts
Recent Comments
목록zeppelin (2)
준호씨의 블로그
Zeppelin 오류 해결하기 - Output is truncated to 102400 bytes. Learn more about ZEPPELIN_INTERPRETER_OUTPUT_LIMIT
Zeppelin에서 결과내역이 많은 경우 다음과 메시지를 보게 됩니다. Output is truncated to 102400 bytes. Learn more about ZEPPELIN_INTERPRETER_OUTPUT_LIMIT https://zeppelin.apache.org/docs/0.10.1/setup/operation/configuration.html
개발이야기
2023. 6. 8. 21:58
Linux에서 openssl 1.1.1t 소스코드 빌드해서 설치 하고 python 3.8.14 빌드해서 설치하기
Linux 서버에서 기본 설치 된 Python 버전이 낮은 경우 높은 버전의 Python을 설치해서 사용하는 경우가 있습니다. apt나 yum 같은 패키지 관리자로 업그레이드가 가능한 경우도 있겠지만 그렇지 않은 경우 소스코드를 다운로드하여서 빌드해서 설치해야 합니다. Python 소스 코드로 빌드해서 설치하기 기본 다음은 Python 3.8.14를 /program/python/Python-3.8.14 경로에 설치하는 방법입니다. wget https://www.python.org/ftp/python/3.8.14/Python-3.8.14.tgz tar xvfz Python-3.8.14.tgz cd Python-3.8.14 ./configure --prefix=/program/python/Python-3.8..
개발이야기
2023. 5. 15. 23:54