19 lines
620 B
PowerShell
19 lines
620 B
PowerShell
# Downloads don't work automatically, since the URL is regenerated via javascript.
|
|
# Downloaded from https://www.lfd.uci.edu/~gohlke/pythonlibs/#ta-lib
|
|
|
|
python -m pip install --upgrade pip wheel
|
|
|
|
$pyv = python -c "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')"
|
|
|
|
if ($pyv -eq '3.8') {
|
|
pip install build_helpers\TA_Lib-0.4.24-cp38-cp38-win_amd64.whl
|
|
}
|
|
if ($pyv -eq '3.9') {
|
|
pip install build_helpers\TA_Lib-0.4.24-cp39-cp39-win_amd64.whl
|
|
}
|
|
if ($pyv -eq '3.10') {
|
|
pip install build_helpers\TA_Lib-0.4.24-cp310-cp310-win_amd64.whl
|
|
}
|
|
pip install -r requirements-dev.txt
|
|
pip install -e .
|