Hi @thomp7050,
I have Jupyter running on SAS 9.4, however my compute server is running on Linux.
So I am going a bit out on a limb here, but my idea is that you may have to modify the sascfg.py file.
When I look at the sasbase.py file it seems this error is thrown when the access method is set to either STDIO or SSH (see around line 230).
However, when I look at the sascfg.py file you have several options that you can pick from.
In line 32 the following is indicated:
#SAS_config_names = ['default', 'ssh', 'iomlinux', 'iomwin', 'winlocal', 'winiomlinux', 'winiomwin', 'http']
As a default it is set to default (see line 35)
My guess is that you would have to opt for something with 'win' in the name. Maybe 'winlocal'?
When you look further down this file you will see the various options that are being used when you change the access method.
For example, when you opt for winlocal the options are indicated from line 136 onwards.
It is just a guess but I hope it helps.
Kind regards,
--Resa
... View more