I'm using Windows and RStudio aborts the session when I try to run a python chunk. I've tried pointing to the python executable in my anaconda folder using use_python.
Code Chunk 1
library(reticulate)
py_config()
use_python("C:/Users/S1855433/AppData/Local/CONTIN~1/ANACON~1/python.exe")
Output 1
python: C:\Users\S1855433\AppData\Local\CONTIN~1\ANACON~1\python.exe
libpython: C:/Users/S1855433/AppData/Local/CONTIN~1/ANACON~1/python37.dll
pythonhome: C:\Users\S1855433\AppData\Local\CONTIN~1\ANACON~1
version: 3.7.3 (default, Apr 24 2019, 15:29:51) [MSC v.1915 64 bit (AMD64)]
Architecture: 64bit
numpy: [NOT FOUND]
python versions found:
C:\Users\S1855433\AppData\Local\CONTIN~1\ANACON~1\python.exe
C:\Users\S1855433\AppData\Local\CONTIN~1\MINICO~1\python.exe
Then when I try to run my python chunk:
Code Chunk 2
import pandas as pd
import selenium as sn
The first error message that pops up is

The second is the message that says I should abort and restart my r session.
I've tried uninstalling anaconda and reinstalling but nothing has worked.