growl

How to manually install a pypi module without pip/easy_install?

不打扰是莪最后的温柔 提交于 2019-11-26 12:04:02
I want to use the gntp module to display toaster-like notifications for a C/C++ software. I want to package all the dependencies for the soft to be self-executable on a another computer. The gntp module is only available through the pip installer, which cannot be used (The computer which is running the soft do not have any internet connection) : how can I install it from the sources ? 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. Download the package unzip it if it is zipped cd into

How to manually install a pypi module without pip/easy_install?

橙三吉。 提交于 2019-11-26 03:30:00
问题 I want to use the gntp module to display toaster-like notifications for a C/C++ software. I want to package all the dependencies for the soft to be self-executable on a another computer. The gntp module is only available through the pip installer, which cannot be used (The computer which is running the soft do not have any internet connection) : how can I install it from the sources ? I would prefer not to force the user to install easy_install/pip and manually add the pip path to the %PATH.