I searched this topic before but still I couldnt find the answer. I'm trying a guide on Object Detection using tensorflow on Raspberry Pi. I'm currently using Raspberry Pi3. So I followed a guide and this is the place I got stuck, I stuck at installing opencv-python, no matter what I try it always comes out with
Could not find a version that satisfies the requirement opencv-python
The Raspbian Version I'm currently on is Raspbian Buster 10/7/2019 Python 2.7 Python 3.7.3
I'm not sure whether if it's the version of tensorflow/python is making me unable to install opencv-python. The current version of tensorflow on my RPi is 1.13.
I tried removing python 3.7 and installed python 3.5, but that led me to boot loop so I had to reinstall Raspbian again. I tried
sudo pip3 install opencv-contrib-python
pip3 install opencv-python
pip install opencv-python
None of them succeeded
Before installing opencv-python i need to install some dependencies, these codes run successfully ,
sudo apt-get install libjpeg-dev libtiff5-dev libjasper-dev libpng12-dev
sudo apt-get install libavcodec-dev libavformat-dev libswscale-dev libv4l-dev
sudo apt-get install libxvidcore-dev libx264-dev
sudo apt-get install qt4-dev-tools
pip3 install opencv-python (this is where I failed)
ERROR: Could not find a version that satisfies the requirement opencv-python(fromversion:)
pip3 install python-opencv?