GhostPC

raw JSON →
0.2.24 verified Sat May 09 auth: no python

GhostPC allows you to control your Windows PC remotely via WhatsApp, with AI vision capabilities. The current version is 0.2.24, supporting Python >=3.12. It is actively maintained with frequent releases.

pip install ghost-pc
error ModuleNotFoundError: No module named 'ghostpc'
cause Incorrect import due to package name spelling.
fix
Use 'from ghost_pc import GhostPC' instead.
error ImportError: cannot import name 'GhostPC' from 'ghost_pc'
cause May be using an older version that didn't export GhostPC class.
fix
Upgrade to latest version: pip install --upgrade ghost-pc
gotcha Package name uses hyphens (ghost-pc) but import uses underscores (ghost_pc). Common mistake to try 'import ghostpc'.
fix Use 'pip install ghost-pc' and 'from ghost_pc import GhostPC'.
deprecated Older versions used 'ghostpc' as module name; this has changed.
fix Upgrade to latest and use 'ghost_pc' module.

Initialize and run GhostPC. It listens for WhatsApp messages to execute commands.

from ghost_pc import GhostPC
import os

client = GhostPC()
client.run()