728x90
[Jupyter notebook] vscode 안에서 ipynb에서 html로 바꾸기
terminal
jupyter nbconvert --to html /Your notebook path/file.ipynb
google colabe에서도 동일하다.
%%shell
jupyter nbconvert --to html /Your notebook path/file.ipynb
근데 해당 방법에서는 자꾸 다음과 같은 오류가 떴다.
raise NotJSONError(("Notebook does not appear to be JSON: %r" % s)[:77] + "...") from e
nbformat.reader.NotJSONError: Notebook does not appear to be JSON: ''...
다른 방법
728x90
'python > 라이브러리' 카테고리의 다른 글
[OpenCV] double free or corruption (!prev)Aborted (core dumped) (0) | 2024.02.02 |
---|---|
[Deep learning] 정형데이터를 위한 딥러닝 신경망 TabNet (0) | 2023.02.27 |
[Python] argparse로 모델 학습하기 / Python argparse 사용법 (0) | 2023.01.30 |
[Tensorflow] InternalError: Blas xGEMM launch failed : a.shape=[1,15,1024], b.shape=[1,1024,1024], m=15, n=1024, k=1024 [Op:MatMul] 오류 (1) | 2023.01.25 |
[Flask] 플라스크 웹 배포 (0) | 2022.11.18 |