This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(venv3) roboi9@roboi9-X299-AORUS-Gaming-3:~$ pip3 install dlib | |
Collecting dlib | |
Using cached https://files.pythonhosted.org/packages/05/57/e8a8caa3c89a27f80bc78da39c423e2553f482a3705adc619176a3a24b36/dlib-19.17.0.tar.gz | |
Building wheels for collected packages: dlib | |
Building wheel for dlib (setup.py) ... error | |
ERROR: Complete output from command /home/roboi9/venv3/bin/python3 -u -c 'import setuptools, tokenize;__file__='"'"'/tmp/pip-install-n3edlevb/dlib/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-up8zefmp --python-tag cp35: | |
ERROR: running bdist_wheel | |
running build | |
running build_py | |
package init file 'dlib/__init__.py' not found (or not a regular file) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# import the necessary packages | |
from __future__ import print_function | |
from sklearn.metrics import classification_report | |
from sklearn.ensemble import RandomForestClassifier | |
from sklearn.tree import DecisionTreeClassifier | |
from imutils import paths | |
import numpy as np | |
import argparse | |
import mahotas | |
import cv2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Connection Configurations for TypeORM | |
* Used for creating, running and reverting Migrations | |
* And seeding data | |
*/ | |
module.exports = { | |
type: 'postgres', | |
host: 'localhost', | |
port: 5432, |