当前位置: 代码迷 >> 综合 >> 【Linux Ubuntu】阿里云轻量应用服务器配置jupyter notebook
  详细解决方案

【Linux Ubuntu】阿里云轻量应用服务器配置jupyter notebook

热度:55   发布时间:2023-11-30 16:58:27.0

阿里云轻量应用服务器配置过程与华为云服务器配置过程总体上是一样的,只是在(4)配置云服务器的安全组 部分不太一样,因为轻量应用服务器中没有“安全组”,而阿里云ECS服务器有,所以轻量应用服务器就是将添加安全组入方向规则改为添加防火墙规则,添加后的效果:

详细配置过程参考我的上一篇博客:【Linux Ubuntu】华为云配置jupyter notebook

 

另:在pytorch中遇到 “Torch: not enough memory: you tried to allocate 0GB. ” 错误,向swap中分配虚拟内存即可。

(1)查看系统内存swap分区大小

free -m

(2)创建swap文件

mkdir ~/swap 
cd ~/swap 
sudo dd if=/dev/zero of=swapfile bs=1024 count=2000000 # 创建2Gswap分区
sudo mkswap -f swapfile # 把生成的文件转换成 Swap 文件

(3)激活swap文件

sudo swapon swapfile

(4)查看swap分区大小

free -m

参考:

  • https://blog.csdn.net/github_39611196/article/details/79844017
  • https://blog.csdn.net/qq_27855219/article/details/84062049