[Solved] ModuleNotFoundError: No module named ‘_ctypes’ occurs when non-root users install python3.7.4 without root privileges

Problem: ModuleNotFoundError: No module named ‘_ctypes’ occurs when non-root users install python3.7 without root privileges The source of the problem, because this error occurs when compiling and installing versions above 3.7, which is the lack of libffi-devel dependencies That is, when installing versions above 3.7, a new libffi-devel package is required as a dependency In […]

[Solved] Error during NPM package release – `npm ERR! Unexpected token < in JSON at position 0 while parsing near ‘<!DOCTYPE HTML P

Recently, I was learning the MVVM framework. With the attitude of learning with eyes but not necessarily with hands, I found various resources on the Internet and realized my first MVVM Simple framework – let’s call it: uuq-mvvm-test. So I want to use the realization of this small framework to learn the process of publishing […]

[Solved] [Python3.8] ctypes load dll: error FileNotFoundError: Could not find module xx.dll’ (or one of its

Questions Python3.8 uses ctypes to load dll error FileNotFoundError: Could not find module ‘xxx.dll’. (or one of its dependencies). Try using the full path with constructor syntax. Reason Since python3.8, considering the security issues such as dll hijacking, python3.8 has changed the search and loading mechanism of dll, that is, it only searches and loads […]