mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Add custom ipython versions
This commit is contained in:
parent
4dd86fe4cd
commit
56556173e2
6
root/usr/local/bin/ipython3.6
Executable file
6
root/usr/local/bin/ipython3.6
Executable 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
6
root/usr/local/bin/ipython3.7
Executable 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
6
root/usr/local/bin/ipython3.8
Executable 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
6
root/usr/local/bin/ipython3.9
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/python3.9
|
||||
|
||||
if __name__ == '__main__':
|
||||
from IPython import start_ipython
|
||||
start_ipython()
|
||||
|
Loading…
Reference in a new issue