virtual memory exhausted: Cannot allocate memory
今天在VPS上pip install -r requirements.txt
的时候,报了这个错误。
不是很知道原因是什么,
dd if=/dev/zero of=/swap bs=1024 count=1M
//Format the swap file:
mkswap /swap
//Enable the swap file:
swapon /swap
//Enable swap on boot:
echo "/swap swap swap sw 0 0" >> /etc/fstab
根据网上的搜索结果,这样做就解决问题了。