python.jupyter - k821209/pipelines GitHub Wiki
YOUTUBE๋ฃ๊ธฐ
from IPython.lib.display import YouTubeVideo
YouTubeVideo('b_pTxGu2L04')
password ์ค์ ๋ฐฉ๋ฒ
http://goodtogreate.tistory.com/entry/IPython-Notebook-%EC%84%A4%EC%B9%98%EB%B0%A9%EB%B2%95
jupyter ์ LD_LIB_PATH ์๋จน์๋
https://github.com/jupyter/notebook/issues/1290
python3 kernel ๊น๊ธฐ
pip3 install --upgrade setuptools pip # ์์ ฏ ์๋ฐ์ง ๋จผ์ง ๋๋ฉด.
pip3 install jupyter
ipython3 kernelspec install-self
ํ์ฌ python ๋ฒ์ ์ผ๋ก jupyter kernel ์ฌ์ฉํ๋ ค๋ฉด
https://stackoverflow.com/questions/39007571/running-jupyter-with-multiple-python-and-ipython-paths
python -m ipykernel install
Install and run
$ screen -S ipnb
$ sudo pip install jupyter
$ sudo jupyter notebook --port 9999 --ip 147.46.xx.xx
# ์ํ๋ค๋ฉด ๋์ ๋๋ ํ ๋ฆฌ๋ ์ง์ ํ ์ ์๋ค. check
$ jupyter notenook --help
SVG display
from IPython.display import SVG, display
filename='/ref/analysis/BAMVIS-GENE/release/Cre01.g005651.v5.5.bamvisgene.svg'
display(SVG(filename))