File size: 17,440 Bytes
b158684 | 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 | """
Interactive Python Environment Setup Script
Optimized for modern ML workflows
Includes automatic GPU detection and TORCH LOCKING to prevent downgrades
Supports uv (fast) with automatic fallback to pip
"""
import subprocess
import sys
import argparse
from pathlib import Path
VENV_DIR = ".venv"
TORCH_LOCK_FILE = Path(VENV_DIR) / "torch.lock"
USE_VENV = True
USE_UV = False # Set automatically by detect_uv()
GPU_AVAILABLE = False
CUDA_VERSION = "cu121"
UPGRADE = "--upgrade"
REINSTALL_TORCH = False
BASE_PACKAGES = [
"matplotlib",
"seaborn",
"IPython",
"IProgress",
"ipykernel",
"pandas",
"tqdm",
"numpy",
"scikit-learn",
"plotly",
"jupyter",
"ipywidgets",
"pyarrow",
"fastparquet",
]
CUSTOM_PACKAGES = [
"gradio",
"pycountry"
]
# Packages for the classification server
ML_PACKAGES = ["transformers", "accelerate", "bitsandbytes"]
# For the old "install all" option, kept for compatibility if needed
# but the new menu provides more granular control.
PACKAGES = ML_PACKAGES + BASE_PACKAGES + CUSTOM_PACKAGES
# ---------------------------------------------------------------------------
# uv detection
# ---------------------------------------------------------------------------
def detect_uv() -> bool:
"""Return True if uv is available on PATH."""
global USE_UV
try:
result = subprocess.run(
["uv", "--version"],
capture_output=True,
text=True,
timeout=5,
)
if result.returncode == 0:
version = result.stdout.strip()
print(f"โก uv detected ({version}) โ using uv for package management.")
USE_UV = True
return True
except (FileNotFoundError, subprocess.TimeoutExpired):
pass
print(" uv not found โ falling back to pip.")
USE_UV = False
return False
# ---------------------------------------------------------------------------
# GPU detection
# ---------------------------------------------------------------------------
def detect_nvidia_gpu():
"""Detect if NVIDIA GPU is available and extract CUDA version dynamically."""
global GPU_AVAILABLE, CUDA_VERSION
try:
result = subprocess.run(
["nvidia-smi", "--query-gpu=compute_cap", "--format=csv,noheader"],
capture_output=True,
text=True,
timeout=5,
)
if result.returncode == 0:
GPU_AVAILABLE = True
print("โ
NVIDIA GPU detected!")
try:
gpu_info = subprocess.run(
["nvidia-smi", "--query-gpu=name", "--format=csv,noheader"],
capture_output=True,
text=True,
timeout=5,
)
if gpu_info.returncode == 0:
print(f" GPU: {gpu_info.stdout.strip()}")
except Exception:
pass
try:
cuda_info = subprocess.run(
["nvidia-smi"],
capture_output=True,
text=True,
timeout=5,
)
import re
match = re.search(r"CUDA Version: (\d+)\.(\d+)", cuda_info.stdout)
if match:
major, minor = match.groups()
CUDA_VERSION = f"cu{major}{minor}"
print(f" Detected CUDA version: {major}.{minor}")
else:
print(
f" Could not parse CUDA version, using default: {CUDA_VERSION}"
)
print(f" Using PyTorch wheel: {CUDA_VERSION}")
except Exception as e:
print(
f" Could not detect CUDA version: {e}, using default: {CUDA_VERSION}"
)
return True
except (FileNotFoundError, subprocess.TimeoutExpired):
pass
GPU_AVAILABLE = False
return False
def detect_amd_gpu():
"""Detect if AMD GPU is available with ROCm."""
try:
result = subprocess.run(
["rocm-smi"],
capture_output=True,
text=True,
timeout=5,
)
if result.returncode == 0:
print("โ
AMD GPU with ROCm detected!")
return True
except (FileNotFoundError, subprocess.TimeoutExpired):
pass
return False
def get_supported_cuda_version(detected: str) -> str:
"""
Clamp the detected CUDA version to the latest wheel PyTorch actually
publishes. Newer drivers are backward-compatible, so the highest
supported wheel always works.
Update SUPPORTED_CUDA_VERSIONS when PyTorch adds new wheels.
See: https://download.pytorch.org/whl/torch/
"""
SUPPORTED_CUDA_VERSIONS = ["cu118", "cu121", "cu124", "cu126", "cu128"]
if detected in SUPPORTED_CUDA_VERSIONS:
return detected
def _ver_num(tag: str) -> int:
try:
return int(tag.replace("cu", ""))
except ValueError:
return 0
detected_num = _ver_num(detected)
supported_nums = [_ver_num(v) for v in SUPPORTED_CUDA_VERSIONS]
if detected_num > max(supported_nums):
clamped = SUPPORTED_CUDA_VERSIONS[-1]
print(
f" โ ๏ธ CUDA {detected} has no PyTorch wheel yet. "
f"Falling back to {clamped} (fully compatible with your driver)."
)
return clamped
for ver, num in zip(reversed(SUPPORTED_CUDA_VERSIONS), reversed(supported_nums)):
if detected_num >= num:
print(f" โ ๏ธ No exact wheel for {detected}, using {ver}.")
return ver
return SUPPORTED_CUDA_VERSIONS[-1]
def get_pytorch_install_args() -> list[str]:
"""Return the PyTorch package list + index-url args for the current hardware."""
if GPU_AVAILABLE == "nvidia":
wheel_tag = get_supported_cuda_version(CUDA_VERSION)
return [
"torch",
"torchvision",
"torchaudio",
"--index-url",
f"https://download.pytorch.org/whl/{wheel_tag}",
]
elif GPU_AVAILABLE == "amd":
return [
"torch",
"torchvision",
"torchaudio",
"--index-url",
"https://download.pytorch.org/whl/rocm6.2",
]
else:
return [
"torch",
"torchvision",
"torchaudio",
"--index-url",
"https://download.pytorch.org/whl/cpu",
]
# ---------------------------------------------------------------------------
# Installer helpers
# ---------------------------------------------------------------------------
def _build_install_cmd(
packages: list[str], extra_args: list[str] | None = None
) -> list[str]:
"""
Build the full install command as a list (no shell=True needed).
uv pip install โ uv pip install [--upgrade] <pkgs> [extra_args]
pip install โ <venv>/bin/pip install [--upgrade] <pkgs> [extra_args]
"""
extra_args = extra_args or []
if USE_UV:
cmd = ["uv", "pip", "install"]
if USE_VENV:
# Tell uv which venv to target explicitly
cmd += ["--python", _python_executable()]
if UPGRADE:
cmd.append("--upgrade")
cmd += packages + extra_args
else:
cmd = [_pip_executable()]
cmd += ["install"]
if UPGRADE:
cmd.append("--upgrade")
cmd += packages + extra_args
return cmd
def _pip_executable() -> str:
"""Path to the venv pip (or bare 'pip' when not using a venv)."""
if not USE_VENV:
return "pip"
if sys.platform == "win32":
return f"{VENV_DIR}\\Scripts\\pip.exe"
return f"{VENV_DIR}/bin/pip"
def _python_executable() -> str:
"""Path to the venv python (or the current interpreter)."""
if not USE_VENV:
return sys.executable
if sys.platform == "win32":
return f"{VENV_DIR}\\Scripts\\python.exe"
return f"{VENV_DIR}/bin/python"
# Keep old name for any callers that still reference it
def get_pip_executable() -> str:
return _pip_executable()
def install_packages(package_list: list[str], description: str):
"""Install a list of packages using uv or pip."""
print(f"๐ฆ Installing {description}...")
cmd = _build_install_cmd(package_list)
print(f" Running: {' '.join(cmd)}")
result = subprocess.run(cmd)
if result.returncode == 0:
print(f"โ
{description} installed successfully.")
else:
print(f"โ Failed to install some {description}.")
def install_pytorch():
"""Install PyTorch with appropriate GPU support."""
print("๐ฆ Installing PyTorch...")
torch_args = get_pytorch_install_args()
# Split packages from index-url args so _build_install_cmd can position them correctly
# torch_args looks like: ["torch", "torchvision", "torchaudio", "--index-url", "<url>"]
try:
idx = torch_args.index("--index-url")
packages = torch_args[:idx]
extra = torch_args[idx:]
except ValueError:
packages = torch_args
extra = []
cmd = _build_install_cmd(packages, extra_args=extra)
print(f" Running: {' '.join(cmd)}")
result = subprocess.run(cmd)
if result.returncode == 0:
# Record installed version and lock it
try:
if USE_UV:
version_result = subprocess.run(
["uv", "pip", "show", "torch", "--python", _python_executable()],
capture_output=True,
text=True,
)
else:
version_result = subprocess.run(
[_pip_executable(), "show", "torch"],
capture_output=True,
text=True,
)
if "Version:" in version_result.stdout:
version = version_result.stdout.split("Version: ")[1].split("\n")[0]
TORCH_LOCK_FILE.write_text(version)
print(f"๐งฑ PyTorch {version} locked to {TORCH_LOCK_FILE}")
except Exception:
pass
if GPU_AVAILABLE == "nvidia":
print(f"โ
PyTorch (NVIDIA GPU {CUDA_VERSION}) installed successfully.")
elif GPU_AVAILABLE == "amd":
print("โ
PyTorch (AMD ROCm) installed successfully.")
else:
print("โ
PyTorch (CPU) installed successfully.")
else:
print("โ Failed to install PyTorch.")
def is_torch_locked() -> bool:
"""Check if PyTorch is locked."""
return TORCH_LOCK_FILE.exists()
def create_venv():
"""Create the virtual environment if it doesn't exist."""
venv_path = Path(VENV_DIR)
if not venv_path.exists():
print(f"๐ ๏ธ Creating virtual environment in '{VENV_DIR}'...")
try:
if USE_UV:
subprocess.run(["uv", "venv", VENV_DIR], check=True)
else:
subprocess.run([sys.executable, "-m", "venv", VENV_DIR], check=True)
print("โ
Virtual environment created successfully.")
except subprocess.CalledProcessError as e:
print(f"โ Failed to create virtual environment: {e}")
sys.exit(1)
else:
print(f"โ Found existing virtual environment: '{VENV_DIR}'")
# ---------------------------------------------------------------------------
# Menu / UI
# ---------------------------------------------------------------------------
def show_menu():
"""Display interactive menu."""
print("\n" + "=" * 60)
print("๐ INTERACTIVE ENVIRONMENT SETUP")
print("=" * 60)
venv_status = (
f"ACTIVE (in ./{VENV_DIR})" if USE_VENV else "INACTIVE (global site-packages)"
)
print(f"Virtual Environment : {venv_status}")
installer = "uv โก" if USE_UV else "pip"
print(f"Package Manager : {installer}")
platform_info = "Windows" if sys.platform == "win32" else "Linux/WSL/Mac"
print(f"Platform : {platform_info}")
if GPU_AVAILABLE == "nvidia":
gpu_status = f"GPU: Detected ({CUDA_VERSION})"
elif GPU_AVAILABLE == "amd":
gpu_status = "GPU: AMD ROCm detected"
else:
gpu_status = "GPU: Not detected (CPU-only)"
print(f"{gpu_status}")
torch_status = (
"๐งฑ PyTorch is LOCKED" if is_torch_locked() else "PyTorch is unlocked"
)
print(f"Torch Status : {torch_status}")
print("\nOptions:")
print(" 0. Basic setup (includes custom packages)")
print(" 1. Install ML Packages (Classification Server)")
print(" 2. Install ML Packages (Full Training Setup)")
print(" 3. Check current installation")
print(" 4. Reinstall PyTorch (unlock and reinstall)")
print(" 5. Exit")
print("-" * 60)
def check_installation():
"""Check what's currently installed."""
print("\n๐ Checking current installation...")
python_exec = _python_executable()
print(f" Using Python: {python_exec}")
def get_package_version(pkg_name):
cmd = f'{python_exec} -c "import {pkg_name}; print({pkg_name}.__version__)"'
result = subprocess.run(cmd, shell=True, capture_output=True, text=True)
return result.stdout.strip()
packages_to_check = ["torch", "pandas", "pyarrow", "transformers", "sklearn"]
for pkg in packages_to_check:
version = get_package_version(pkg)
print(f" {pkg}: {version if version else 'Not installed'}")
print("\n๐ฎ Checking GPU support...")
gpu_check_cmd = (
f'{python_exec} -c "'
"import torch; "
"print(f'CUDA available: {torch.cuda.is_available()}'); "
"print(f'Device: {torch.cuda.get_device_name(0) if torch.cuda.is_available() else \"CPU\"}')"
'"'
)
subprocess.run(gpu_check_cmd, shell=True)
print("\n๐ฆ Checking Parquet support...")
parquet_check_cmd = (
f'{python_exec} -c "'
"import pandas as pd, sys; "
"pd.io.parquet.get_engine('auto'); "
"print('โ
Parquet engine available')"
'"'
)
subprocess.run(parquet_check_cmd, shell=True)
# ---------------------------------------------------------------------------
# Entry point
# ---------------------------------------------------------------------------
def main():
global USE_VENV, GPU_AVAILABLE, UPGRADE, REINSTALL_TORCH
parser = argparse.ArgumentParser(
description="Interactive environment setup script with torch locking."
)
parser.add_argument(
"--no-venv",
action="store_true",
help="Install packages in the global environment instead of the virtual environment.",
)
parser.add_argument(
"--no-upgrade",
action="store_true",
help="Do not use upgrade flags when installing packages.",
)
parser.add_argument(
"--reinstall-torch",
action="store_true",
help="Reinstall PyTorch even if locked.",
)
args = parser.parse_args()
if args.no_venv:
USE_VENV = False
if args.no_upgrade:
UPGRADE = ""
if args.reinstall_torch:
REINSTALL_TORCH = True
print("\n๐ Detecting package manager...")
detect_uv()
print("\n๐ Detecting hardware...")
if detect_nvidia_gpu():
GPU_AVAILABLE = "nvidia"
elif detect_amd_gpu():
GPU_AVAILABLE = "amd"
else:
print(" No GPU detected. Will use CPU-only PyTorch.")
if USE_VENV:
create_venv()
while True:
show_menu()
choice = input("\nEnter your choice (0-5): ").strip()
if choice == "0":
print("\nBasic setup starting...")
install_packages(BASE_PACKAGES, "base packages")
install_packages(CUSTOM_PACKAGES, "custom packages")
print("\nโ
Basic setup complete!")
sys.exit(0)
elif choice == "1":
print("\nSetting up for Classification Server...")
if is_torch_locked() and not REINSTALL_TORCH:
print("๐งฑ PyTorch is already locked. Skipping PyTorch install.")
else:
install_pytorch()
install_packages(ML_PACKAGES, "classification packages")
install_packages(CUSTOM_PACKAGES, "custom packages")
install_packages(BASE_PACKAGES, "base packages")
print("\nโ
Classification Server setup complete!")
sys.exit(0)
elif choice == "2":
print("\nStarting Full Training Setup...")
if is_torch_locked() and not REINSTALL_TORCH:
print("๐งฑ PyTorch is already locked. Skipping PyTorch install.")
else:
install_pytorch()
install_packages(ML_PACKAGES, "classification packages")
install_packages(CUSTOM_PACKAGES, "custom packages")
install_packages(BASE_PACKAGES, "base packages")
print("\nโ
Full Training Environment setup complete!")
sys.exit(0)
elif choice == "3":
check_installation()
elif choice == "4":
print("\n๐ Reinstalling PyTorch...")
TORCH_LOCK_FILE.unlink(missing_ok=True)
install_pytorch()
else:
print("\n๐ Goodbye!")
break
if __name__ == "__main__":
main()
|