/mlx

machine learning for quant trading

Primary LanguagePython

mlx

machine learning for quant trading

ENV INSTALL

install poetry

curl -sSL https://install.python-poetry.org | python3 -

config poetry > zsh

mkdir $ZSH_CUSTOM/plugins/poetry
poetry completions zsh > $ZSH_CUSTOM/plugins/poetry/_poetry

update apt

sudo apt-get install python3.10-dev default-libmysqlclient-dev build-essential

install dependencies

poetry install -vvv

add dependencies

poetry add xxxx

Vscode Jupyter Notebook Setting

vim .vscode/setting.json

to set it at your workspace root more generically:

{
    "jupyter.notebookFileRoot": "${workspaceFolder}"
}

Unit Test

make test