Add custom ipython versions

This commit is contained in:
ItsDrike 2021-12-18 01:37:29 +01:00
parent 4dd86fe4cd
commit 56556173e2
No known key found for this signature in database
GPG key ID: FB8CA11A2CF3A843
4 changed files with 24 additions and 0 deletions

6
root/usr/local/bin/ipython3.6 Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/python3.6
if __name__ == '__main__':
from IPython import start_ipython
start_ipython()

6
root/usr/local/bin/ipython3.7 Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/python3.7
if __name__ == '__main__':
from IPython import start_ipython
start_ipython()

6
root/usr/local/bin/ipython3.8 Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/python3.8
if __name__ == '__main__':
from IPython import start_ipython
start_ipython()

6
root/usr/local/bin/ipython3.9 Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/python3.9
if __name__ == '__main__':
from IPython import start_ipython
start_ipython()