mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
12 lines
200 B
Python
Executable File
12 lines
200 B
Python
Executable File
#!/usr/bin/env python
|
|
"""This calls the setup routine for Python 2 or 3 as required."""
|
|
|
|
import sys
|
|
|
|
if sys.version_info[0] >= 3:
|
|
from setup3 import main
|
|
else:
|
|
from setup2 import main
|
|
|
|
main()
|