Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 893 Bytes

jupyter.md

File metadata and controls

43 lines (30 loc) · 893 Bytes

Jupyter

Install jupyter notebook via docker. Preferrably use portainer to manage jupyter's container via docker-compose:

version: "2.1"
services:
  plex:
    image: jupyter/scipy-notebook:latest
    container_name: jupyter-scipy-notebook
    network_mode: host
    volumes:
      - /home/<user>/shared/jupyter:/home/jovyan/work
    restart: unless-stopped

ta-lib

For doing technical analysis on financial data install ta-lib.

Enter Jupyter's container & in the terminal tab install ta-lib with conda. These instructions are copied over from ta-libs's github.

conda install -c conda-forge ta-lib

plotly

Plotly is useful for showing candle stick charts. Install it with:

conda install -c plotly plotly=5.10.0

fastai

For getting function add_datepart.

conda install -c fastchan fastai