| ~ ❯ mkdir inphase 07:45:00
|
| ~ ❯ cd inphase 07:45:04
|
| ~/inphase ❯ mkdir real-ones 07:45:10
|
| ~/inphase ❯ ln -s real-ones syms 07:45:38
|
| ~/inphase ❯ ll 07:45:43
|
| total 0
|
| drwxr-xr-x 2 grym staff 64B Apr 3 07:45 real-ones
|
| lrwxr-xr-x 1 grym staff 9B Apr 3 07:45 syms -> real-ones
|
| ~/inphase ❯ cd syms 07:45:43
|
| ~/inphase/syms ❯ python -m venv ./moduleinvoked 07:45:47
|
| ~/inphase/syms ❯ python -m venv ./bininvoked 08:16:37
|
| ~/inphase/syms ❯ ./moduleinvoked/bin/python -m pip install ipython 08:16:44
|
| ~/inphase/syms ❯ ./bininvoked/bin/pip install ipython 5s 08:17:04
|
| ~/inphase/syms ❯ bat ./moduleinvoked/bin/ipython 5s 08:17:28
|
| ───────┬──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
|
| │ File: ./moduleinvoked/bin/ipython
|
| ───────┼──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
|
| 1 │ #!/Users/grym/inphase/real-ones/moduleinvoked/bin/python
|
| 2 │ # -*- coding: utf-8 -*-
|
| 3 │ import re
|
| 4 │ import sys
|
| 5 │ from IPython import start_ipython
|
| 6 │ if __name__ == '__main__':
|
| 7 │ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
| 8 │ sys.exit(start_ipython())
|
| ───────┴──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
|
| ~/inphase/syms ❯ bat ./bininvoked/bin/ipython 08:17:40
|
| ───────┬──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
|
| │ File: ./bininvoked/bin/ipython
|
| ───────┼──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
|
| 1 │ #!/Users/grym/inphase/real-ones/bininvoked/bin/python
|
| 2 │ # -*- coding: utf-8 -*-
|
| 3 │ import re
|
| 4 │ import sys
|
| 5 │ from IPython import start_ipython
|
| 6 │ if __name__ == '__main__':
|
| 7 │ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
| 8 │ sys.exit(start_ipython())
|
| ───────┴──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
|
| ~/inphase/syms ❯ pwd 08:17:48
|
| /Users/grym/inphase/syms
|