(visually see servers in pic)
** error message **
Install OpenCV 4.1.2 on Raspbian Buster
$ chmod +x *.sh
$ ./download-opencv.sh
$ ./install-deps.sh
$ ./build-opencv.sh
$ cd ~/opencv/opencv-4.1.2/build
$ sudo make install
Largely based on the Tensorflow 1.6 gist, and Tensorflow 1.7 gist for xcode, this should hopefully simplify things a bit.
Largely based on the Tensorflow 1.6 gist, this should hopefully simplify things a bit. Mixing homebrew python2/python3 with pip ends up being a mess, so here's an approach to uses the built-in python27.
This gist (based on a blog post at byai.io) documents how to set up TensorFlow 1.6 with (e)GPU support without the need to disable SIP. Following the original gist got me a saystem in which training TF on eGPU was successful, but there were various visual glitches due to the newer / less stable version of the driver.
As pointed out by ronchigram, many people are having issues with newer NVIDIA drivers, so it's worth using the nvidia-update script by Benjamin Dobell that installs the latest stable NVIDIA web driver, and if necessary patches it to run on your system. We also don't need to disable SIP when using nvidia-update.
I have als
componentWillMount() { | |
console.log('componentWillMount(){'); | |
} | |
componentDidMount() { | |
console.log('componentDidMount(){'); | |
} | |
componentWillReceiveProps(nextProps) { | |
console.log('componentWillReceiveProps(){'); |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
Current configuration works for my GPU and notebook, hope it helps
It is based on (a different configuration): https://gist.github.com/jganzabal/8e59e3b0f59642dd0b5f2e4de03c7687
and on (multiple choices for different GPU drivers): https://www.tonymacx86.com/threads/nvidia-releases-alternate-graphics-drivers-for-macos-sierra-10-12-6-378-05-05-25.227494/
#!/usr/bin/env python3 | |
import os | |
import requests | |
import itertools | |
from dateutil.parser import parse | |
API_KEY = '' | |
API_SECRET = '' |