본문 바로가기
ERROR

UsageError: Line magic function `%%writefile` not found.

by ram_ 2022. 11. 28.

매번 한글 설정을 적어주기 번거로워서 모듈을 만들려고 하던 중에 발생한 에러이다.


Why ?

%%writefile 자체는 셀의 가장 상단에 위치해야 한다. #~ 으로 적어놓은 주석때문에 error가 발생했던 것이다.

 

 

Solution !

주석을 %%writefile 문장 다음으로 배치하였다. 정상 작동되었다.

 


- 참고 링크

https://stackoverflow.com/questions/52255582/python-jupyter-magic-writefile-returns-syntaxerror-invalid-syntax

 

python jupyter magic %%writefile returns SyntaxError: invalid syntax

# [ ] The following program asks the user for a circle radius then display the area and circumference # Modify the program so it only displays the information when executed directly # The program s...

stackoverflow.com