Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.22 KB

README.md

File metadata and controls

39 lines (30 loc) · 1.22 KB

pydata-talk

Jupyter Notebooks for PyData talks

  • For SudokuSolver, dowload the pre-trained model and labels into the resources folder. Download the content from here.

Installation Instructions For OpenCV (Linux)

Run the following commands

  1. Installing required packages (last command is optional, run only if you want to test python version)
sudo apt-get install build-essential
sudo apt-get install cmake git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev
sudo apt-get install python-dev python-numpy libtbb2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libjasper-dev libdc1394-22-dev
  1. Downloading cmake
sudo add-apt-repository ppa:george-edison55/cmake-3.x
sudo apt-get update
sudo apt-get install cmake
  1. cd ~
  2. Downloading opencv - wget https://github.com/Itseez/opencv/archive/2.4.13.zip
  3. Building OpenCV
unzip 2.4.13.zip
cd opencv-2.4.13
mkdir release
cd release
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local ..
make
sudo make install

For Tensorflow, follow instructions here