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:
- execute your conda command outside of your ipython session (IOW, a normal shell); or
- pass the
--yes
flag. e.g.:
!conda create -n graphlab-env python=2.7 anaconda -y