How to print python file

2023. 2. 20. 22:40Data science/Python

반응형

1. Convert to PDF file 

# to download the xelatex
brew install basictex
sudo tlmgr update --self
sudo tlmgr install texliveonfly
sudo tlmgr install adjustbox
sudo tlmgr install tcolorbox
sudo tlmgr install collectbox
sudo tlmgr install ucs
sudo tlmgr install environ
sudo tlmgr install trimspaces
sudo tlmgr install titling
sudo tlmgr install enumitem
sudo tlmgr install rsfs

2. Convert to HTML file and print 

pip install nbconvert

cd Users/Downloads  # Directory changes 

jupyter nbconvert --to html myfile.ipynb 
# Replace myfile to the file name which you want to convert to HTML

 

반응형