====== Object Identification with Tensorflow, OpenCV, ImageAI and YOLO - Software / Libraries Requirements ====== This are the requirements for this [[:computer_science:computer_vision:opencv:object_identification_tensorflow_opencv_imageai_yolo|project]]. Depending on your installation you may already have some Python Libraries installed. This was my case on the Xubuntu 20.04. You can either: * a) delete everything python / pip related and install fresh apt remove python3 -y \ && apt autoremove -y \ && pip3 freeze | xargs pip3 uninstall -y * b) use a virtual env. like [[https://www.anaconda.com/|Anaconda]] Requirements - **opencv_imageai_requirements_install.sh**: apt install python3 -y \ && apt install python3-pip -y \ && pip3 install tensorflow \ && pip3 install keras \ && pip3 install opencv-python \ && pip3 install imageai \ && pip3 install requests