python/scripts/windows-setup-fix.bat
sai-adarsh 22db50ec7e Initial Commit
Initial Commit
2019-02-21 01:12:15 +05:30

10 lines
356 B
Batchfile

REM Install python client in Windows.
REM Windows doesn't have symbolic link that this repo uses.
REM This batch script provides a workaround for symbolic link by copying the folders over.
( python --version>nul 2>&1 && (
echo "Python environment found."
)
python --version
copy ..\kubernetes\base\* ..\kubernetes\
cd .. && python setup.py install )