These are the scripts for practicing opencv using Python on PC and Mac
- On the Mac I am using virtualenv
- go to terminal
- if it is the first time type
virtualenv -p python2.7 test
-p python2.7
means that I will use python2.7 this could be changed to for example 3.7test
is the name of the folder that you are creating with the new virvualenv
cd test
source bin/activate
- this will start the virtual environment and you should see something like (test) at the beggining of each line in Terminal
- type
pyhton
if you want to work inside python otherwise typepython colorscroll.py
to run the script namedcolorscroll.py