2021-06-01から1ヶ月間の記事一覧

Julia + Jupyter + VSCode + Windows10 でNotebook to PDF

以前導入したJuliaのJupyter環境をリセットして、再度セットアップしようとしたら死ぬほど詰まったのでメモ。 はじめに 環境 Juliaのインストール Juliaのパッケージ Jupyter Notebookのインストール VSCodeのインストールと拡張機能 Notebookの作成とグラフ…

Docker + Selenium + arm64

When I tried to use Selenium on RaspberryPi whose OS is Ubuntu, I couldn't do it because any image of SeleniumHQ/docker-selenium doesn't support arm64. I tried another way, which is downloading chromedriver from https://chromedriver.chromi…

RaspberryPi + Python3.9でmatplotlib/pandas

nnt339es.hatenablog.com 折角ビルドしたのにmatplotlibもpandasもpipできなかったので結局Docker。 curl -fsSL https://get.docker.com/ | bash 参考 docs.docker.jp (accessed on 2021/06/10) Dockerfile 適当にDockerfile書いて終わり。 FROM python:3.9.…

RaspberryPiへのPythonインストールメモ

RaspberryPiにUbuntu入れて適当にPythonインストールしてたらSSL関連でpipが詰まったのでそのメモ。 $ sudo apt update # ビルド用ライブラリのインストール (これを忘れていた。) $ sudo apt install build-essential libbz2-dev libdb-dev \ libreadline-…