LoginSignup
54
52

More than 5 years have passed since last update.

python ipynbファイルをpyファイルに変換 (notebookをpython scriptに変換)

Last updated at Posted at 2019-03-20
  • ipynbファイルをpyファイルに変換 code
import subprocess
subprocess.run(['jupyter', 'nbconvert', '--to', 'script', '*.ipynb'])
# jupyter nbconvert --to script *.ipynb
  • ipynbファイルをpyの変換 command
jupyter nbconvert --to script *.ipynb
54
52
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
54
52