Ini merupakan postingan khusus buat yang belajar computer vision dengan Python-OpenCV. Ada beberapa error yang sering muncul, dan menghabiskan waktu untuk mencari solusi yang tepat
Error
RuntimeError: The current Numpy installation ('C:\Python36\lib\site-packages\numpy\__init__.py') fails to pass a sanity check due to a bug in the windows runtime.
Solusi
<code>pip install numpy==1.19.3</code>
atau
<code>numpy==1.19.3; platform_system == "Windows"</code>
Code language: HTML, XML (xml)
Leave a Reply