I am studying Pytorch, and I use Windows and Jupyter notebook.
When I try to import some modules like gym or cv2 on Pytorch Kernel, there are errors like 'no modules names gym'.
When I run sys.path on Pytorch there is no path "C:\Users\Myname\Anaconda3\envs\pytorch\lib\site-packages\IPython\extensions", which is there on Python3 kernel.
So I used sys.path.append to add this path and I could import the modules successfully.
But is there a way to add this path permanently to my sys.path on Pytorch? Or should I type sys.path.append every time I run the different code?