A command-line tool to generate a snapshot of system information, including CPU, RAM, disk, operating system, and basic GPU details.
- Collects system information.
- Reports CPU details (cores, usage).
- Reports RAM usage.
- Reports disk usage.
- Reports operating system information.
- Attempts to report basic GPU information (platform dependent).
- Uses
platform,psutil, andsubprocess.
- Python 3.x
- psutil
- platform (built-in)
- subprocess (built-in)
- os (built-in)
- Ensure you have Python 3.x installed.
- Navigate to the
forgespecdirectory. - Install dependencies:
pip install -r requirements.txt
Run the main.py script to display the system information snapshot.
python main.pyThe script will print the collected system details to the console.
(Note: GPU information retrieval can be complex and platform-specific. The basic implementation might only provide limited details or require additional system tools to be installed.)