Skip to content

Instantly share code, notes, and snippets.

View iwasakishuto's full-sized avatar
🍷

shuto iwasaki iwasakishuto

🍷
View GitHub Profile
@hacksalot
hacksalot / install-wkhtmltopdf-travis.md
Last active May 10, 2021 13:01
Install wkhtmltopdf on Ubuntu 16.04 LTS

Install the [latest wkhtmltopdf binary][1], extract it, and copy the wkhtmltopdf and wkhtmltoimage executables to /usr/bin/.

wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
tar xf  wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
cd ./wkhtmltox/bin/
sudo cp -R ./* /usr/bin/
wkhtmltopdf -V
@iwasakishuto
iwasakishuto / poetry_jupyternotebook.md
Created July 7, 2021 07:36
Run jupyter notebook using Poetry Environment.

Run jupyter notebook using Poetry Environment

$ poetry install
$ poetry shell
(.venv) $ ipython kernel install --user --name=NAME
(.venv) $ exit
# Check the configuration file.
$ jupyter kernelspec list