I am using pypy3 to compile python project which is related to video streaming. I wanted to speed up the video (want to increase average frames per second).
To run the project, I need to install opencv-python, scipy, ffpyplayer, and pyglet.
I tried installing opencv using just pip, however, it did not work (I tried almost every possibilities).
After research, I figured out that I have to use pip inside pypy folder (../pypy3/bin/pip). However, it gives same error that "Could not find a version that satisfies the requirement opencv-python (from versions: ) No matching distribution found for opencv-python". Also scipy "error: library dfftpack has Fortran sources but no Fortran compiler found".
Have anyone ever used those packages with pypy? I have tried in virtualenv and on my computer too.
Please help me with this since I am working on this for several weeks already. (I have tried on OSX and windows)