Ubuntu Installation :->
- Install virtualenv :->
sudo apt-get install virtualenv
Then install python which you want to use in your virtual environment from this link.
Make virtual environment :->
virtualenv --python = $(which python) environment name
Replace "environment name" with the name you want keep in your PC.
“which python” command will return the path of python which you want to use in your new environment.
- To enter in new virtual environment :-> Run below commands in terminal -
source envname/bin/activate
- Run below command to ensure pip in installed in your system :->
sudo apt-get install python-dev python-pip
- To install opencv :->
pip install opencv-python
Enjoy computer-vision………
“A lot of the future of search is going to be about pictures. Computer vision technology is going to be a big deal”.
Ben Silbermann
.
make.