How to install Python package with CMake?

Is there a Python package management tool that is similar to Java maven, which allows to specify all dependent packages for a project?

  • I have a Python project, which has many dependent packages. What is the best package management tool that can install all dependent packages with specified versions on a new machine?

  • Answer:

    Package management in Python is kind of a stickler because there's no standard solution and everyone prefers one or the other. However, to answer your question; I enjoy using pip for exactly what you are asking. With pip, you can setup a requirements file in which you specify, down to the version and even location of the packages, that this project requires: http://pip.openplans.org/requirement-format.html The page their documents how to set the file up, but it's pretty simple. Once you setup the file, you can use the -r flag within pip to install from the file. pip install -E myenvironment -r requirements.txt

Bartek Ciszkowski at Quora Visit the source

Was this solution helpful to you?

Other answers

The most popular package managers allow you to specify a list of required packages for the simple reason that most make use of the stock distutils require keyword that is located in the http://setup.py script - see http://docs.python.org/distutils/setupscript.html for details. Setuptools (also known as easy_install) is I think now included with, or has parts of it included with, the later versions of Python. PIP allows for a requirement file: http://pip.openplans.org/#requirements-files PIP behind the scenes is calling the stock distutils/setuptools modules to do the heavy lifting of package management.  The key difference for PIP is that it tells setuptools to install the packages "flat" by passing in the --single-version-externally-managed option. I think one of the most helpful suggestions I ever received was to stop installing packages into the system python location and instead use VirtualEnv to manage each project so it has it's own copy of any required packages. So use whichever method is more in line with how you feel about package management, but IMO pair it with VirtualEnv so you can back-out or change things without having to worry about damaging your base Python install.

Bear (M. Taylor)

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.