We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c02595 commit 22db50eCopy full SHA for 22db50e
scripts/windows-setup-fix.bat
@@ -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