https://courses.nvidia.com/dashboard
安装 Anaconda
source 错误
错误: shell 脚本中含有 source 命令运行时提示 source: not found测试:运行 ls -l /bin/sh 后显示 /bin/sh -> dash这说明是用 dash 来进行解析的。解决方案:命令行执行:dpkg-reconfigure dash(需要 root 权限)在界面中选择 no再运行 ls -l /bin/sh 后显示 /bin/sh -> bash
工作目录
source /root/.bashrccd /dli/tasks/task1/task/
wget https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.shbash Anaconda3-2020.02-Linux-x86_64.sh# 输入2次 yesdpkg-reconfigure dash# 输入 nosource /root/.bashrc
