ipex-llm/python/llm/scripts/env-check.bat
Yuxuan Xia ca2479be87
Update scripts readme (#10725)
* 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
2024-04-25 17:24:37 +08:00

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