Hello, World!
./a.out: error while loading shared libraries: libhello.so: cannot open shared object file: No such file or directory
makefile = """ ... ... """ import os os.system('unzip -o helpcode.zip > /dev/null 2>&1') makefile_filename = "Makefile" with open(makefile_filename, 'w') as file: file.write(makefile) os.system('make > /dev/null 2>&1') os.system('LD_LIBRARY_PATH=. ./a.out') os.system('./a.out 2>&1')