HomeCopy is a desktop text relay app for macOS and Windows.
This repository now ships a small Python installer CLI so a machine can pull the latest HomeCopy source from GitHub, build the local executable, and update it later.
pip install HomeCopyIf you are working from a local source checkout and want this machine to expose
the homecopy command directly from the repo:
python3 scripts/install_local_cli.pyIf pip is missing but Python is already installed:
python3 -m ensurepip --upgrade
python3 -m pip install --upgrade pipOn Windows:
py -m ensurepip --upgrade
py -m pip install --upgrade piphomecopy installThis command:
- downloads the latest
Tommy-OMI/HomeCopysource from GitHub - builds the platform-specific desktop executable on the current machine
- installs the built app into a local user-owned directory
The installer prefers Python 3.12 or 3.11 for the actual desktop build.
If you want to force a specific interpreter:
export HOMECOPY_PYTHON_BIN=/path/to/python3.11
homecopy installhomecopy updatehomecopy doctor
homecopy version- macOS app target:
~/Applications/HomeCopy.app - macOS data root:
~/Library/Application Support/HomeCopy - Windows app target:
%LOCALAPPDATA%\Programs\HomeCopy - Windows data root:
%LOCALAPPDATA%\HomeCopy
Common/: shared cross-platform modulesMacOS/: macOS client and server sources plus macOS packaging scriptWindows/: Windows client and server sources plus Windows packaging scriptsrc/homecopy_installer/: pip-installed installer CLI