Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 811
lucasg Avatar asked Nov 07 '12 13:11

lucasg


People also ask

How do I manually install a Python library?

To install a package that includes a setup.py file, open a command or terminal window and: cd into the root directory where setup.py is located. Enter: python setup.py install.


1 Answers

  1. Download the package
  2. unzip it if it is zipped
  3. cd into the directory containing setup.py
  4. If there are any installation instructions contained in documentation, read and follow the instructions OTHERWISE
  5. type in python setup.py install

You may need administrator privileges for step 5. What you do here depends on your operating system. For example in Ubuntu you would say sudo python setup.py install


EDIT- thanks to kwatford (see first comment)

To bypass the need for administrator privileges during step 5 above you may be able to make use of the --user flag. This way you can install the package only for the current user.

The docs say:

Files will be installed into subdirectories of site.USER_BASE (written as userbase hereafter). This scheme installs pure Python modules and extension modules in the same location (also known as site.USER_SITE).

More details can be found here: http://docs.python.org/2.7/install/index.html

like image 60
Sheena Avatar answered Sep 28 '22 02:09

Sheena