Windows 11 환경에서 로컬 LLM(예: Ollama, LM Studio, vLLM 등)을 설치/운영하려면 하드웨어, OS, GPU, 드라이버, 가상화, Python 환경을 정확히 파악하기
1. 시스템 기본 정보 확인systeminfo✔ 확인 포인트OS 버전 (Windows 11 여부)RAM 용량CPU 정보BIOS / 가상화 지원 여부2. CPU 상세 정보wmic cpu get name,NumberOfCores,NumberOfLogicalProcessors또는Get-CimInstance Win32_Processor✔ 확인 포인트코어 수 / 쓰레드 수AVX 지원 여부 (LLM 성능 중요)3. 메모리 (RAM)wmic computersystem get TotalPhysicalMemoryPowerShell:Get-CimInstance Win32_PhysicalMemory | Select Capacity, Speed✔ 기준최소: 16GB권장: 32GB 이상 (13B 모델 이상)4. GPU 확인 (..
더보기