puppet-python icon indicating copy to clipboard operation
puppet-python copied to clipboard

Puppet module for installing and managing Python, pip, virtualenvs and Gunicorn virtual hosts.

Results 95 puppet-python issues
Sort by recently updated
recently updated
newest added
trafficstars

I'd like to install some of the OS provided python packages. This module seemed like the place to do it, but there doesn't seem to be a "right place" right...

Hi, I followed this procedure to install python33 : "To use this module with Linux distributions in the Red Hat family and python distributions from softwarecollections.org, set python::provider to 'rhscl'...

Attempting to setup `pyvenv`s on Ubuntu 14.04 using `Python3.4` fail, due to the `python3.4-venv` package not being installed. This is not automatically installed by either the module or a dependency.

**Summary** I faced permission problems which in the end turned out to be caused by `python::pip` calling `pip freeze` calling `hg showconfig` on modules unrelated to the installation in charge....

Is there a way to add support for a custom puppet version to be installed? We have a prepackaged RPM in our internal yum repo that we install--and I was...

In first example, there are 'present' strings. In fact, module is requires boolean (true/false) to make it works. Please fix it :)

I manage a directory of requirements files with a file resource of type "directory" with recurse => true. But the file contents of those files don't get updated, because the...

We mirror all repos that are used on a private pulp server. It would be great if we could configure python to use the rhscl provider and have it point...

Trying to use this module on Amazon Linux doesn't quite work, unfortunately. ``` puppet class { 'python': version => 'system', pip => true, dev => true, } ``` Yields: ```...

I'm trying to upgrade Python. Here is the manifest: ``` class { 'python' : version => '3', pip => false, #dev => true, #virtualenv => true, #gunicorn => true, }...