I have following line of code to accept Identifiers:
security = input("Insert ID")
This works great on my python. However when I send the notebook to a colleague, this error occurs:
StdinNotImplementedError Traceback (most recent call last)
<ipython-input-1-324a5244d6ce> in <module>
1 ## Insert NIM/PREL or active Bond here
----> 2 security = input("Insert Bond ID or Figi # -- e.x. 025816CH0 Corp, BBG012JJ3534 ") #BQ3149326 credit ag #BQ4561651 jag #025816CH0 AMEX #BR0344159 PREL EXAMPLE #BR1139871 PREL INR
C:\axy\py\environments\quant2\lib\site-packages\ipykernel\kernelbase.py in raw_input(self, prompt)
853 if not self._allow_stdin:
854 raise StdinNotImplementedError(
--> 855 "raw_input was called, but this frontend does not support input requests."
856 )
857 return self._input_request(str(prompt),
StdinNotImplementedError: raw_input was called, but this frontend does not support input requests.
What could be causing this mis match?