Following this: http://www.pyimagesearch.com/2016/12/19/install-opencv-3-on-macos-with-homebrew-the-easy-way/
Then tried to verify... with a fail.
$> python
>>> import cv2
Traceback (most recent call last):
#!/usr/bin/python | |
''' | |
Script to count messages by user posted to a channel for a given date range. | |
Install: | |
# sudo pip install -r requirements.txt | |
Also you will need to obtain a slack API token: | |
https://api.slack.com/docs/oauth-test-tokens |
# The version of createrepo coming over can change | |
# We can't wildcard in ansible yum, so list with wildcard, then install | |
- name: List the files called create repo | |
find: | |
paths: "{{ yum_repo_location }}" | |
patterns: "createrepo*.rpm" | |
register: create_repo_files | |
- name: Install correct version of create repo | |
yum: |
# Simple playbook to understand and illustrate how nicely ansible handles registering output as part of a `with_items` loop. | |
# To call: | |
# $> ansible-playbook playbook.yml | |
--- | |
- hosts: localhost | |
tasks: | |
- stat: | |
path: "/tmp" |
Jicofo 2017-05-25 20:07:40.516 SEVERE: [52] org.jitsi.jicofo.ChannelAllocator.log() Failed to allocate channels using bridge: jitsi-videobridge.jitsi.mydomain.net | |
net.java.sip.communicator.service.protocol.OperationFailedException: Failed to allocate colibri channels: <iq id="85Wk4-61" to="[email protected]/focus29813371057323" from="jitsi-videobridge.jitsi.mydomain.net" type="error"><conference xmlns='http://jitsi.org/protocol/colibri' name='helloworld'><content name='audio'><channel endpoint='87f60587' initiator='true' channel-bundle-id='87f60587' last-n='-1'><payload-type name='opus' clockrate='48000' id='111' channels='2'><parameter value='10' name='minptime'/><parameter value='1' name='useinbandfec'/></payload-type><payload-type id='103' name='ISAC' clockrate='16000'/><payload-type id='104' name='ISAC' clockrate='32000'/><payload-type id='126' name='telephone-event' clockrate='8000'/><rtp-hdrext id='1' uri='urn:ietf:params:rtp-hdrext:ssrc-audio-level'/></channel></content><content name |
// Inspect the classpath - used during debugging | |
//ClassLoader cl = ClassLoader.getSystemClassLoader(); | |
//URL[] urls = ((URLClassLoader) cl).getURLs(); | |
//for (URL url : urls) { | |
// System.out.println(url.getFile()); | |
//} |
Following this: http://www.pyimagesearch.com/2016/12/19/install-opencv-3-on-macos-with-homebrew-the-easy-way/
Then tried to verify... with a fail.
$> python
>>> import cv2
Traceback (most recent call last):
Module Variables ("vars"): | |
-------------------------------- | |
{{ vars | to_nice_json }} | |
Environment Variables ("environment"): | |
-------------------------------- | |
{{ environment | to_nice_json }} | |
GROUP NAMES Variables ("group_names"): | |
-------------------------------- |
- name: Install rsync | |
yum: name=rsync state=latest | |
tags: filebeat_cert | |
- name: Sync the cert to the logstash box | |
synchronize: | |
src: "{{ cert_path }}/{{ filebeat_cert_name }}" | |
dest: "{{ cert_path }}/{{ filebeat_cert_name }}" | |
mode: pull |
- name: Fetch down the key to this control box | |
fetch: | |
src: "{{ filebeat_key_path }}/{{ filebeat_key_name }}" | |
dest: "{{ playbook_dir }}/roles/filebeat/files/{{ filebeat_key_name }}" | |
flat: yes | |
tags: logstash_fetch |
{:timestamp=>"2016-10-28T17:21:44.445000+0100", :message=>"Pipeline aborted due to error", :exception=>java.lang.NullPointerException, :backtrace=>["org.logstash.netty.PrivateKeyConverter.generatePkcs8(org/logstash/netty/PrivateKeyConverter.java:43)", "org.logstash.netty.PrivateKeyConverter.convert(org/logstash/netty/PrivateKeyConverter.java:39)", "java.lang.reflect.Method.invoke(java/lang/reflect/Method.java:498)", "RUBY.create_server(/usr/share/logstash/vendor/bundle/jruby/1.9/gems/logstash-input-beats-3.1.0.beta4-java/lib/logstash/inputs/beats.rb:139)", "RUBY.register(/usr/share/logstash/vendor/bundle/jruby/1.9/gems/logstash-input-beats-3.1.0.beta4-java/lib/logstash/inputs/beats.rb:132)", "RUBY.start_inputs(/usr/share/logstash/logstash-core/lib/logstash/pipeline.rb:311)", "org.jruby.RubyArray.each(org/jruby/RubyArray.java:1613)", "RUBY.start_inputs(/usr/share/logstash/logstash-core/lib/logstash/pipeline.rb:310)", "RUBY.start_workers(/usr/share/logstash/logstash-core/lib/logstash/pipeline.rb:187)", "RUB |