DrVai-Rag-Testing / myenv /bin /jupyter-kernelspec
aakash0017's picture
Upload folder using huggingface_hub
b7731cd
raw
history blame contribute delete
306 Bytes
#!/Users/aakashbhatnagar/Documents/masters/LLM/myenv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from jupyter_client.kernelspecapp import KernelSpecApp
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(KernelSpecApp.launch_instance())