Skip to content

Commit fcda6fe

Browse files
authored
Merge pull request #766 from Sai-Adarsh/master
Fixes Setup.py error on Windows #676
2 parents 2c02595 + 22db50e commit fcda6fe

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

scripts/windows-setup-fix.bat

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
REM Install python client in Windows.
2+
REM Windows doesn't have symbolic link that this repo uses.
3+
REM This batch script provides a workaround for symbolic link by copying the folders over.
4+
5+
( python --version>nul 2>&1 && (
6+
echo "Python environment found."
7+
)
8+
python --version
9+
copy ..\kubernetes\base\* ..\kubernetes\
10+
cd .. && python setup.py install )

0 commit comments

Comments
 (0)