EyeTV with OSCAM and eyetvCamd (supports libusb, smartreader, smargo, USB, SSL, OS X 10.11.x, 64Bit) A Mac OS X Oscam server with USB support for external readers

OSCam with ssl, libusb support - os x changed its ssl library support - libusb must be installed for external usb cardreader support 1. I recommend "brew" to install openssl 1.1. /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 1.2. brew install openssl 1.3. this will install openssl to /usr/local/Cellar/openssl/xxx/ 1.4. as oscam will look for openssl in /usr/local/include and /usr/local/lib you are welcome to link or copy it there manually 2. download libusb from here http://sourceforge.net/projects/libusb/files/libusb-1.0/libusb-1.0.9/libusb-1.0.9.tar.bz2 2.1 configure, make, make install it 3. build oscam with ssl and usb support 3.1. get scam sources here: svn checkout http://www.streamboard.tv/svn/oscam/trunk oscam-svn I recommend to checkout…

4 Comments

Fix TensorFlow Python 0.10.0rc0 ProtoBuf Error

        Hi, if you have trouble to use Google's TensorFlow Python API with MAC OS X: Uninstall all previous TensorFlow and ProtoBuffer installations: pip uninstall tensorflow pip uninstall protobuf brew uninstall protobuf Reinstall TensorFlow (Update URL to latest master): export TF_BINARY_URL= https://storage. googleapis.com /tensorflow/mac/cpu/tensorflow-0.10.0rc0-py2-none-any.whl pip install --upgrade $TF_BINARY_URL Test TensorFlow (Python script): import tensorflow as tf hello = tf.constant('Hello, TensorFlow!') sess = tf.Session() print(sess.run(hello)) a = tf.constant(10) b = tf.constant(32) print(sess.run(a + b))  

0 Comments