algorithm_system_server/myenv/bin/ipython

9 lines
289 B
Plaintext
Raw Permalink Normal View History

2024-06-21 10:06:54 +08:00
#!/Users/souvikmallick/Desktop/cv_project/LiveProcessedVideoStream/myenv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from IPython import start_ipython
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(start_ipython())