https://courses.nvidia.com/dashboard

安装 Anaconda

语雀内容

source 错误

  1. 错误: shell 脚本中含有 source 命令运行时提示 source: not found
  2. 测试:
  3. 运行 ls -l /bin/sh 后显示 /bin/sh -> dash
  4. 这说明是用 dash 来进行解析的。
  5. 解决方案:
  6. 命令行执行:dpkg-reconfigure dash(需要 root 权限)
  7. 在界面中选择 no
  8. 再运行 ls -l /bin/sh 后显示 /bin/sh -> bash

工作目录

  1. source /root/.bashrc
  2. cd /dli/tasks/task1/task/
  1. wget https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh
  2. bash Anaconda3-2020.02-Linux-x86_64.sh
  3. # 输入2次 yes
  4. dpkg-reconfigure dash
  5. # 输入 no
  6. source /root/.bashrc