Displaying 20 results from an estimated 20 matches for "pyyaml".
Did you mean:
pyxml
2014 Dec 21
4
yum upgrade not working
Hey all,
I'm attempting to upgrade a Centos 5.9 machine to CentOS 5.10.
But when I try the yum update command I get this response:
--> Finished Dependency Resolution
python26-PyYAML-3.08-5.el5.x86_64 from installed has depsolving problems
--> Missing Dependency: libyaml-0.so.1()(64bit) is needed by package
python26-PyYAML-3.08-5.el5.x86_64 (installed)
--> Running transaction check
---> Package kernel.x86_64 0:2.6.18-164.15.1.el5.centos.plus set to be
erased
--->...
2014 Dec 21
0
yum upgrade not working
On 21/12/14 02:25, Tim Dunphy wrote:
> Hey all,
>
> I'm attempting to upgrade a Centos 5.9 machine to CentOS 5.10.
>
> But when I try the yum update command I get this response:
>
> --> Finished Dependency Resolution
> python26-PyYAML-3.08-5.el5.x86_64 from installed has depsolving problems
> --> Missing Dependency: libyaml-0.so.1()(64bit) is needed by package
> python26-PyYAML-3.08-5.el5.x86_64 (installed)
> --> Running transaction check
> ---> Package kernel.x86_64 0:2.6.18-164.15.1.el5.centos.plus set t...
2014 Dec 22
0
yum upgrade not working
..., Dec 20, 2014 at 9:25 PM, Tim Dunphy <bluethundr at gmail.com> wrote:
> Hey all,
>
> I'm attempting to upgrade a Centos 5.9 machine to CentOS 5.10.
>
> But when I try the yum update command I get this response:
>
> --> Finished Dependency Resolution
> python26-PyYAML-3.08-5.el5.x86_64 from installed has depsolving problems
> --> Missing Dependency: libyaml-0.so.1()(64bit) is needed by package
> python26-PyYAML-3.08-5.el5.x86_64 (installed)
> --> Running transaction check
> ---> Package kernel.x86_64 0:2.6.18-164.15.1.el5.centos.plus set t...
2016 Nov 17
2
Rewriting opt-viewer in C++
If the decision on whether this should swing Python or C++ is still open, here’s some food for thought: it’s trivially parallelizable.
I lobbed some stuff in https://reviews.llvm.org/D26789
I used the pure python PyYAML and got a speedup of ~4x on my test case. I expect you might still be able to get an improvement with libYAML + a patch like this one.
FWIW prior to this I also tried PyPy (w/original opt-viewer.py+pure python PyYAML) and got a very modest improvement. I haven’t tried revisiting it after paralle...
2011 Jan 30
1
py-yaml complaints from yum
hello list!!
I'm having a curious issue.. if I type yum update -y the system
complains of a PyYAML dependency:
--> Finished Dependency Resolution
PyYAML-3.08-4.el5.x86_64 from installed has depsolving problems
--> Missing Dependency: libyaml-0.so.1()(64bit) is needed by package
PyYAML-3.08-4.el5.x86_64 (installed)
Error: Missing Dependency: libyaml-0.so.1()(64bit) is needed by
package P...
2016 Nov 14
2
Rewriting opt-viewer in C++
Again I am still undecided which way this should go but I was also wondering about the speed difference if we used the C-based parser in PyYAML (http://pyyaml.org/wiki/LibYAML <http://pyyaml.org/wiki/LibYAML>).
> On Nov 13, 2016, at 12:19 AM, Adam Nemet <anemet at apple.com> wrote:
>
> Hi Bob,
>
> I am glad you’re finding opt-viewer useful. I am generally fine this being rewritten in C++. The idea was that o...
2013 Nov 01
9
package conflict resolution method:
Hello, list:
I have two puppet modules that are unrelated to each other, but
both have (unrelated) Python scripts that parse YAML. As such, both
have a block like the following in their manifests for the PyYAML script
dependency:
package { ''PyYAML'':
ensure => installed,
}
If I try and include both modules on the same server this
causes an obvious conflict as the PyYAML package is now defined in two
different package{} blocks.
Can the list please advise on what...
2016 Nov 12
5
Rewriting opt-viewer in C++
Hi Adam,
Thank you for writing opt-viewer! I've been playing around with it and found it helps me understand what optimizations were performed, which were missed, and why, as well as easily navigate to the relevant code. Wanting to use it on larger projects, I found that it can take a while to analyze the optimization reports. Since there doesn't seem to be too much code in it yet, I
2016 Nov 17
2
Rewriting opt-viewer in C++
...in at quicinc.com> > wrote:
If the decision on whether this should swing Python or C++ is still open, here’s some food for thought: it’s trivially parallelizable.
I lobbed some stuff in <https://reviews.llvm.org/D26789> https://reviews.llvm.org/D26789
I used the pure python PyYAML and got a speedup of ~4x on my test case. I expect you might still be able to get an improvement with libYAML + a patch like this one.
FWIW prior to this I also tried PyPy (w/original opt-viewer.py+pure python PyYAML) and got a very modest improvement. I haven’t tried revisiting it after para...
2016 Nov 15
3
Rewriting opt-viewer in C++
...done.
>
> Bob
>
>
>
> On Mon, Nov 14, 2016 at 9:12 AM, Adam Nemet <anemet at apple.com <mailto:anemet at apple.com>> wrote:
> Again I am still undecided which way this should go but I was also wondering about the speed difference if we used the C-based parser in PyYAML (http://pyyaml.org/wiki/LibYAML <http://pyyaml.org/wiki/LibYAML>).
>
>> On Nov 13, 2016, at 12:19 AM, Adam Nemet <anemet at apple.com <mailto:anemet at apple.com>> wrote:
>>
>> Hi Bob,
>>
>> I am glad you’re finding opt-viewer useful. I am gene...
2016 Nov 16
1
Rewriting opt-viewer in C++
...that's done.
>
> Bob
>
>
>
> On Mon, Nov 14, 2016 at 9:12 AM, Adam Nemet <anemet at apple.com> wrote:
>
>> Again I am still undecided which way this should go but I was also
>> wondering about the speed difference if we used the C-based parser in
>> PyYAML (http://pyyaml.org/wiki/LibYAML).
>>
>> On Nov 13, 2016, at 12:19 AM, Adam Nemet <anemet at apple.com> wrote:
>>
>> Hi Bob,
>>
>> I am glad you’re finding opt-viewer useful. I am generally fine this
>> being rewritten in C++. The idea was that once...
2012 Jun 09
1
Python Puppet YAML Report Parser
Hello,
A quick search showed some people may have got this working. Anyone got a
Python (or Perl) script to parse the Puppet reports and put them into a
human
readable format ?
Might be able to knock something together myself but not used PyYAML too
much and might need some pointers.
Thanks
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/tGz191hj__oJ.
To post to this group, send email to p...
2012 Jan 25
4
My ENC won't work, YAML is valid AFAIK
If anyone has any ideas, please share. I''m at a loss.
YAML from Puppet Enterprise 2.0.0 default ENC:
++++++++++++++++++++++++++++++++
---
name: rcf-cm-master.our.org
parameters: {}
classes:
- core-permissions
++++++++++++++++++++++++++++++++
YAML from my Python ENC using PyYAML. This results in ''cannot find node''.
++++++++++++++++++++++++++++++++
---
classes:
- core-permissions
name: rcf-cm-master.our.org
parameters: {}
++++++++++++++++++++++++++++++++
Note that putting the YAML output above in a file and loading it with Ruby''s
YAML::loa...
2014 Dec 13
3
CentOS forum search link in http://wiki.centos.org/AdditionalResources/Repositories under Atomic Repo
[
https://www.centos.org/search.php?query=atomicorp&mid=30&action=showall&andor=AND
forum search] returns a 404.
Can the forum search https://www.centos.org/forums/search.php? be used with
parameters that will provide the supporting material for the warning "Many
CentOS users have had problems after enabling this repo"?
-------------- next part --------------
An HTML
2019 Nov 07
2
yum install fails - itertoolsmodule.so
...by (installed) python-ethtool-0.8-5.el7.x86_64
libpython2.7.so.1.0()(64bit) is needed by (installed) python-urwid-1.1.1-3.el7.x86_64
libpython2.7.so.1.0()(64bit) is needed by (installed) python-pycurl-7.19.0-17.el7.x86_64
libpython2.7.so.1.0()(64bit) is needed by (installed) PyYAML-3.10-11.el7.x86_64
libpython2.7.so.1.0()(64bit) is needed by (installed) pygpgme-0.3-9.el7.x86_64
libpython2.7.so.1.0()(64bit) is needed by (installed) python-cups-1.9.63-6.el7.x86_64
libpython2.7.so.1.0()(64bit) is needed by (installed) python-2.7.5-39.el7_2.x86_64...
2008 Feb 22
1
YAML parser for R in Windows
How can I parse a YAML file in R 2.6.0 in Windows? I cannot get the
RYaml package to compile in Windows, I can't find a MinGW compiled .dll
for an existing YAML parser like syck (which would appear to be the best
hope for creating my own R wrapper functions), and I don't know how to
call a Ruby or Python function from R (so that I could parse the file in
Ruby or Python and pass the parsed
2019 Nov 07
1
yum install fails - itertoolsmodule.so
...0.8-5.el7.x86_64
> > libpython2.7.so.1.0()(64bit) is needed by (installed) python-urwid-1.1.1-3.el7.x86_64
> > libpython2.7.so.1.0()(64bit) is needed by (installed) python-pycurl-7.19.0-17.el7.x86_64
> > libpython2.7.so.1.0()(64bit) is needed by (installed) PyYAML-3.10-11.el7.x86_64
> > libpython2.7.so.1.0()(64bit) is needed by (installed) pygpgme-0.3-9.el7.x86_64
> > libpython2.7.so.1.0()(64bit) is needed by (installed) python-cups-1.9.63-6.el7.x86_64
> > libpython2.7.so.1.0()(64bit) is needed by (installed) python-...
2010 Sep 28
13
Reading Puppet reports with Python
Has anyone got/seen Python code to read puppet reports?
I added a bunch of these:
class PuppetReport(yaml.YAMLObject):
yaml_tag = u''!ruby/object:Puppet::Transaction::Report''
def __init__(self, host, logs, metrics, records, time):
self.host = host
self.logs = logs
self.metrics = metrics
self.records = records
self.time = time
However, the Python YAML
2019 Nov 07
0
yum install fails - itertoolsmodule.so
...python-ethtool-0.8-5.el7.x86_64
> libpython2.7.so.1.0()(64bit) is needed by (installed) python-urwid-1.1.1-3.el7.x86_64
> libpython2.7.so.1.0()(64bit) is needed by (installed) python-pycurl-7.19.0-17.el7.x86_64
> libpython2.7.so.1.0()(64bit) is needed by (installed) PyYAML-3.10-11.el7.x86_64
> libpython2.7.so.1.0()(64bit) is needed by (installed) pygpgme-0.3-9.el7.x86_64
> libpython2.7.so.1.0()(64bit) is needed by (installed) python-cups-1.9.63-6.el7.x86_64
> libpython2.7.so.1.0()(64bit) is needed by (installed) python-2.7.5-39.el7_2....
2012 Dec 12
6
issues with puppet 3.0.1 using ruby 1.9.3 and passenger (3.0.18)
I have installed puppet 3.0.1, passenger 3.0.18 and ruby 1.9.3 and have hit
errors. The error I am hitting is this:
Error message:cannot load such file -- puppet/util/command_lineException
class:LoadError
I get this when hitting the puppet server using https://puppetserver:8140
If I use ruby 1.8, everything works. This is a new deployment so I would
like to use ruby 1.9.3 rather than the