upuil
upuil

Reputation: 85

how to press enter on Google Colaboratory

I try to install Anaconda on Google Colaboratory but how to press enter on this? This question is similar 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

What can I do?

Upvotes: 4

Views: 2173

Answers (1)

Ankur Ankan
Ankur Ankan

Reputation: 3066

You can use the -b option to run the installer in batch mode.

!./miniconda.sh -b

It assumes that you agree to all the terms and conditions. But do keep in mind that this doesn't add the installation path to PATH variable which you will have manually set if you directly want to use the conda command using:

!export PATH=$PATH:<dir_of_conda_installation>/bin

Upvotes: 3

Related Questions