I just downloaded Anaconda 4.2.0 (with python 3.5.2) for Mac OS X. Whenever I try to update any packages etc, my ipython console presents the package dependencies and displays \
Add --yes
at the end of the command.
For example:
!conda install --yes seaborn
Just Append -y to any command to say yes to all the yes/no questions. Most of the packages are configured in a way to work with this. For your:
!conda create -n graphlab-env python=2.7 anaconda -y
Solution:
!conda update --update-all --yes
or shortly:
!conda update --all -y
You can launch shell commands with the !
operator in ipython, but you can't interact with them after the process has launched.
Therefore, you could:
--yes
flag. e.g.:!conda create -n graphlab-env python=2.7 anaconda -y