Installation¶
Using Poetry (Recommended)¶
# [RECOMMENDED]: Trading + Backtesting + Machine Learning + Feature Engineering (e.g. feast, tsfresh, ta) + Analytics
poetry add "pfund[all]"
# [Trading + Backtesting + Machine Learning + Feature Engineering]:
poetry add "pfund[data,ml,fe]"
# [Trading + Backtesting + Machine Learning]:
poetry add "pfund[data,ml]"
# [Trading + Backtesting]:
poetry add "pfund[data]"
# [Trading only]:
poetry add pfund
# update to the latest version:
poetry update pfund
Using Pip¶
# same as above, you can choose to install "pfund[all]", "pfund[data,ml,fe]", "pfund[data,ml]", "pfund[data]" or "pfund"
pip install "pfund[all]"
# install the latest version:
pip install -U pfund
Checking your installation¶
$ pfund --version