I have a notebook that I am trying to automatically execute using a batch file, but to do so I need it to launch in the Anaconda prompt. Based on the suggestions from this post, I was able to get the batch file to open it by calling the activate.bat, but it wouldn't run the second part.
@echo on
call %windir%\System32\cmd.exe "/K" C:\Users\mccom\AppData\Local\Continuum\anaconda3\Scripts\activate.bat C:\Users\mccom\AppData\Local\Continuum\anaconda3
papermill file.ipynb file_out.ipynb
Any tips?