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

The pip resource checks whether the latest version is installed using essentially `pip search pkg_name | grep -i INSTALLED.*latest`. This can give false positives if you have one or more...

The module as it is fails to install Gunicorn on RHEL because it is provided by the RHEL Extras repository which might not be enabled on all installation . The...

Error: Could not retrieve catalog from remote server: Error 500 on SERVER: Server Error: Evaluation Error: Left match operand must result in a String value. Got an Undef Value. at...

Its seems that the unless statement for exec { "python_virtualenv_${venv_dir}": is being overridden by the creates statement. Removing the "creates" param correctly runs the exec command only once. diff virtualenv.pp...

Setting `systempkgs => true,` in pyvenv gives the following error - `Could not evaluate: Could not find command '/opt/jupyterhubenv_p34/bin/pip'` Virtual Env Dir: ``` ls -l /opt/jupyterhubenv_p34/bin/ total 12 -rw-r--r--. 1...

when using the default provider and changing the version, pip is still installed as either python-pip or python3-pip. For example, in this invocation to install python from ius: ``` puppet...

Hi, I am trying to install Python But it can never find the version. I have tried version = 3/34/34u/3.4.5, is there any way to use https://github.com/iuscommunity-pkg rpm ? They...

Python has released both 3.4 and 3.5. 3.4 is **default** python3 on jessie. Ubuntu 16.04 LTS **only ships with python3.5** on the iso (no python2!). I'm trying to install a...

The custom pip_version.rb fact fails on Debian 6 with "Error: Facter: error while resolving custom fact "pip_version": undefined method `[]' for nil:NilClass" when python-pip package is installed (version 0.7.2-1). This...

I have the following code snippet.. ``` class { 'python': version => 'system', pip => 'latest', provider => 'pip', dev => 'present', virtualenv => 'present', gunicorn => 'absent', } ```...