-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
install_all_requirements_win.bat
28 lines (22 loc) · 1.06 KB
/
install_all_requirements_win.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@echo off
rem . .
rem --+----------------------------------------------------------+--
rem . Code by : yasserbdj96 .
rem . Email : yasser.bdj96@gmail.com .
rem . Github : https://github.com/yasserbdj96 .
rem . BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 .
rem --+----------------------------------------------------------+--
rem . all posts #yasserbdj96 ,all views my own. .
rem --+----------------------------------------------------------+--
rem . .
rem START{
Setlocal EnableDelayedExpansion
rem make symbels true:
for /F "tokens=2 delims=:" %%C in ('chcp') do set /A "$CP=%%C"
chcp 437 > nul
set mypath="%~dp0"
rem config.ini:
FOR /F "tokens=*" %%A IN ('type !mypath!"config.ini"') DO set %%A
!python_default_path! -m pip install -r ./requirements.txt
!python_default_path! -m pip install -r ./requirements-pypi.txt
rem }END.