Skip to content

Commit 1be70e1

Browse files
committed
Python environment installation script added
1 parent b913554 commit 1be70e1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

install-env.bat

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
SET PYTHON_REF=https://www.python.org/ftp/python/3.7.3/python-3.7.3-amd64.exe
2+
3+
@ECHO --- Download PYTHON ---
4+
curl %PYTHON_REF% --output python-install.exe
5+
python-install.exe /quiet InstallAllUsers=0 PrependPath=1 Include_test=0
6+
python -m pip install --upgrade pip
7+
pip install virtualenv
8+
DEL python-install.exe

0 commit comments

Comments
 (0)