File size: 1,903 Bytes
cff1674
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import platform
import subprocess
import os

# Get system information
system = platform.system()
release = platform.release()
version = platform.version()
machine = platform.machine()
processor = platform.processor()

# Print system information
print("System Information:")
print(f"System: {system}, Release: {release}, Version: {version}, Machine: {machine}, Processor: {processor}")

# Get Python information
python_version = platform.python_version()
python_implementation = platform.python_implementation()
python_compiler = platform.python_compiler()

# Print Python information
print("\nPython Information:")
print(f"Version: {python_version}, Implementation: {python_implementation}, Compiler: {python_compiler}")

# Get virtual environment information
venv = os.environ.get('VIRTUAL_ENV', None)

# Print virtual environment information
if venv:
    print("\nVirtual Environment Information:")
    print(f"Path: {venv}")
else:
    print("\nVirtual Environment Information:")
    print("Not running inside a virtual environment.")

# Get GPU information (requires nvidia-smi to be installed)
try:
    output = subprocess.check_output(['nvidia-smi', '--query-gpu=name,memory.total', '--format=csv'])
    output = output.decode('utf-8').strip().split('\n')[1:]
    gpu_info = [line.split(', ') for line in output]
    gpu_name, gpu_vram = gpu_info[0]
    gpu_vram = gpu_vram.replace(' MiB', '')
    gpu_vram_warning = int(gpu_vram) < 8000
except (subprocess.CalledProcessError, FileNotFoundError):
    gpu_name, gpu_vram = "N/A", "N/A"
    gpu_vram_warning = False

# Print GPU information
print("\nGPU Information:")
print(f"Name: {gpu_name}, VRAM: {gpu_vram} MiB")

# Print VRAM warning if necessary
if gpu_vram_warning:
    print('\033[33mWarning: GPU VRAM is less than 8GB and will likely result in proper operations.\033[0m')

print(' ')