* Update scripts readme * Update scripts readme * Update README * Update readme * Update readme * Update windows env check readme * Adjust env check readme * Update windows env check * Update env check readme * Adjust the env-check README * Modify the env-check README
21 lines
479 B
Batchfile
21 lines
479 B
Batchfile
@echo off
|
|
|
|
REM Check Python version
|
|
python -V
|
|
if ERRORLEVEL 1 (
|
|
echo No Python found! Instructions on how to create an environment can be found in the README.md.
|
|
goto:end
|
|
)
|
|
python check.py
|
|
|
|
echo -----------------------------------------------------------------
|
|
echo System Information
|
|
systeminfo
|
|
echo -----------------------------------------------------------------
|
|
xpu-smi discovery
|
|
if ERRORLEVEL 1 (
|
|
echo xpu-smi is not installed properly.
|
|
goto:end
|
|
)
|
|
|
|
:end
|