Solved errors
Direct solutions to common programming errors and system issues.
Page 5 of 17
Hugo How to ignore watch files on the server
You can use watchIgnoreFiles = [
Docker: how to delete all containers or images
Check here how to remove all containes with one line command :docker rm $(docker ps -aq). This is useful when you use docker in dev environments and you forgot to delete non-used containers.
Disable apt-get Restart Services Prompt
When you update with
SOLUTION: ValueError: bad marshal data (unknown type code)
If while doing a python setup.py install you got the error
Fix libreadline.7.dylib LoadError on macOS
If you got the error libreadline.7.dylib (LoadError), try to create a symbolic link: ln -s /usr/local/opt/readline/lib/libreadline.8.0.dylib /usr/local/opt/readline/lib/libreadline.7.dylib. Check here for more information.
Library not loaded: libgfortran.3.dylib
If you got the error:
MacOS: numpy/arrayobject.h File Not Found
If you got the error:
MacOS: libffi Required by gobject-2.0 Not Found
Check here the solution for
Fix Go Error: runtime.main_main·f: function main is undeclared [Solution]
Fix the Go error "runtime.main_main·f: function main is undeclared in the main package". Learn the causes and step-by-step solutions with code examples.