You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pip install auquan_toolkit fails because setup.py mentions sklearn instead of the more recent name scikit-learn. There is a workaround by setting environment variable SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL=True but may be better to set the new name into setup.py
reference to outdated pandas call to Dataframe.iteritems() which has been deprecated and removed in favor of Dataframe.items() in backtester/executionSystem/simple_execution_system.py
I pip installed locally with -e and made these changes, and it makes TradingSystem.startTrading() run without error.
The text was updated successfully, but these errors were encountered:
pip install auquan_toolkit
fails becausesetup.py
mentionssklearn
instead of the more recent namescikit-learn
. There is a workaround by setting environment variableSKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL=True
but may be better to set the new name intosetup.py
Dataframe.iteritems()
which has been deprecated and removed in favor ofDataframe.items()
inbacktester/executionSystem/simple_execution_system.py
I pip installed locally with -e and made these changes, and it makes
TradingSystem.startTrading()
run without error.The text was updated successfully, but these errors were encountered: