This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
@echo off
echo 安装SQL Server驱动...
echo.
echo 方式1: 安装pyodbc(推荐)
echo ==============================
pip install pyodbc
echo 方式2: 安装pymssql(备选)
pip install pymssql
echo 安装完成!
pause