Prophetを動かす環境を作るためのDockerfile
DRANK

タイトルの通り。 facebook社による機械学習ライブラリであるprophetを使う環境を構築するのに何故だか手こずってしまったので、Dockerfileを書いてみました。 FROM ubuntu:16.04 RUN apt-get -y update RUN apt-get -y install python3 RUN apt-get -y install python3-pip RUN pip3 install --upgrade pip RUN pip3 i...

qiita.com
Related Topics: Machine Learning Python