I am using a Ubuntu cloud server with limited 512MB RAM and 20 GB HDD. Its 450MB+ RAM is already used by processes.
I need to install a new package called lxml
which gets complied using Cpython
while installation and its a very heavy process so it always exits with error gcc: internal compiler error: Killed (program cc1)
which is due to no RAM available for it to run.
Upgrading the machine is a choice but it has its own issues and few of my services/websites live from this server itself.
But on my local machine lxml
is already installed properly. And since my need is lxml
only, so is it possible that pick all useful files from local machine's directory and copy then into remote machine?
Will it work that way? If yes, how to pick-up all files for a package?
Regards