rishiloyola / python-automation

1 stars 0 forks source link

use of `!` to run shell commands directly in jupyter notebook #1

Open girishramnani opened 7 years ago

girishramnani commented 7 years ago

you can use ! prefixed to commands to run them on shell directly so something like

!pip install 

will work.

more can be found here. https://ipython.org/ipython-doc/3/interactive/magics.html

rishiloyola commented 7 years ago

@girishramnani Thanks.