I want to use the gntp module to display toaster-like notifications for C/C++ software. I want to package all the dependencies for the software to be self-executable on another computer.
The gntp
module is only available through the pip
installer, which cannot be used (the computer running the software does not have an internet connection)
How can I install it from source?
I would prefer not to force the user to install easy_install
/pip
and manually add the pip path to the %PATH
.
PS: I'm using Python 2.7 on a Windows machine.
python setup.py install
? – Executor