我尝试在Google Colaboratory上安装Anaconda,但是如何按Enter键呢? 这个问题类似于Answer “yes” to terminal on Google Colaboratory
Welcome to Anaconda3 5.1.0
In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue
我该怎么办?
答案 0 :(得分:3)
您可以使用-b
选项以批处理模式运行安装程序。
!./miniconda.sh -b
它假定您同意所有条款和条件。但请记住,如果您直接想要使用conda命令,则不会将安装路径添加到PATH
变量中,您将手动设置:
!export PATH=$PATH:<dir_of_conda_installation>/bin
答案 1 :(得分:0)
按shift + Enter在Colab中执行命令。