Link Search Menu Expand Document

Packages

  • WiringPi
  • Raspicam
  • OpenALPR
  • JSON
  • Cmake

Packages Installations

Before install any packages, please run the following:
sudo apt-get update && upgrade

  1. WiringPi:
    sudo apt-get install wiringpi
  2. Raspicam : (For Pi camera)
    Download, build, make and install it.
  3. OpenALPR: (Github page)
    sudo apt-get update && sudo apt-get install -y openalpr openalpr-daemon openalpr-utils libopenalpr-dev
  4. JSON Library: (Github page)
    sudo apt-get install -y nlohmann-json-dev
    If the above method does not work, please try the following:
    a.git clone https://github.com/nlohmann/json.git
    b.cd json
    c.mkdir build
    d.cd build
    e.cmake ..
    f.make
    g.make install

  5. Cmake : (Website)

    Click and download it from the website above.