$ sudo apt-get update
- Install the python 3 and its dev libs.
$ sudo apt-get install python3 python3-dev
- Install a package manager .I' m using pip as the packet manager.
sudo apt-get install python3-pip
- Install openCV and some libs that will be usefull
$ pip install opencv-contrib-python # the OpenCV package
$ pip install imutils # convenience functions
$ pip install matplotlib # for plotting
$ pip install jupyter # presentable programming environment
$ pip install numpy # for manipulatingthe image arrays
Comments
Post a Comment