- Install cmake
- Add to cmake to PATH
PATH=$PATH:/Applications/CMake.app/Contents/bin
- Clone OpenCV repository
cd ~/<my_working _directory>
git clone https://github.com/opencv/opencv.git
[ | |
{ | |
"Classification": "zeppelin-env", | |
"Properties": { | |
}, | |
"Configurations": [ | |
{ | |
"Classification": "export", | |
"Properties": { |
PATH=$PATH:/Applications/CMake.app/Contents/bin
cd ~/<my_working _directory>
git clone https://github.com/opencv/opencv.git
card_no: | |
x: 392 | |
y: 118 | |
w: 227 | |
h: 48 | |
binarize: false | |
date_of_expiry: | |
x: 413 | |
y: 195 |
django.contrib.auth.models.User.objects.all()
return error AttributeError: Manager isn't available; 'auth.User' has been swapped for 'users.User'
from django.contrib.auth import get_user_model
In [5]: get_user_model()
Out[5]: socgram.users.models.User
In [8]: get_user_model().object.all()
Hello