Tag Archives: Summary of programming bugs

No module named sklearn.neighbors_ typedefs

An error occurred during the execution of the EXE file generated by pyinstall package

no module named sklearn.neighbors_typedefs

Solution

Delete the original dist, build file and spec file, and add:

python pyinstaller.py -F -c xxx.py --hidden-import sklearn.neighbors.typedefs

For example:

python pyinstaller.py -F device_data_collect.py -p src --hidden-import sklearn.neighbors.typedefs

Postscript

[postscript] in order to enable everyone to learn programming easily, I created a public official account, which includes programming for quick learning, and some dry cargo to improve your programming level. There are also some programming projects suitable for some courses design.

You can also add my wechat [1257309054] to bring you into the group and let us exchange and study together

Focus on me, we grow together~~

Error: pg_config executable not found.

PIP installation PsyCOPG2 installation and errors
Phenomenon:

Error: pg_config executable not found.

Please add the directory containing pg_config to the PATH
or specify the full executable path with the option:

python setup.py build_ext --pg-config /path/to/pg_config build ...

or with the pg_config option in 'setup.cfg'.
Complete output from command python setup.py egg_info:
running egg_info

creating pip-egg-info/psycopg2.egg-info

writing pip-egg-info/psycopg2.egg-info/PKG-INFO

writing top-level names to pip-egg-info/psycopg2.egg-info/top_level.txt

writing dependency_links to pip-egg-info/psycopg2.egg-info/dependency_links.txt

writing manifest file 'pip-egg-info/psycopg2.egg-info/SOURCES.txt'

warning: manifest_maker: standard file '-c' not found

The solution
1. Install libpq-dev

sudo apt-get install libpq-dev python-dev

2, PIP installation
··
PIP install psycopg2
··· ·
For more information, please pay attention to the public account