mathjax.py 308 B

12345678910111213
  1. #!/usr/bin/python
  2. """
  3. `IPython.external.mathjax` is deprecated with IPython 4.0+
  4. mathjax is now install by default with the notebook package
  5. """
  6. import sys
  7. if __name__ == '__main__' :
  8. sys.exit("IPython.external.mathjax is deprecated, Mathjax is now installed by default with the notebook package")