is there any way to run it in other code ? like eth pyethapp
I faced the same problem with you.
My solution is to run eos on public testnet.
how to do it? just start to learn
One reason is that we build the clang compiler during the build process. Some of those source files easily cause the compiler to eat over 1GB of RAM during the compilation. A make -j4 or make -j8 can easily cause 4GB+ of RAM usage.
You can try to edit the script in eos/scripts/eosio_build_ubuntu.sh
line 27 ' if ["${MEM_MEG}" -lt 7000] ' --> ' if ["${MEM_MEG}" -lt 4000] '
or kill line 30 ' exit 1 '
Most helpful comment
You can try to edit the script in eos/scripts/eosio_build_ubuntu.sh
line 27 ' if ["${MEM_MEG}" -lt 7000] ' --> ' if ["${MEM_MEG}" -lt 4000] '
or kill line 30 ' exit 1 '