raganmd
11/14/2018 - 5:06 AM

updated-dependencies-windows-script

adds a local python folder for any dependencies

:: make sure pip is up to date
python -m pip install --upgrade pip

::pull sklearn into this dependencies dir
pip install --target="%~dp0\python" sklearn

::pull scipy into this dependencies dir
pip install --target="%~dp0\python" scipy

::pull numpy into this dependencies dir
pip install --target="%~dp0\python" numpy