BookmarkSubscribeRSS Feed
muhuri
Calcite | Level 5

This is regarding an error (i.e., No Kernel) I have encountered when I started a new SAS Notebook (for licensed SAS 9.4M6, not the University edition), from the Launcher in JupyterLab.  However, when I selected the SAS kernel, I got the “Error Starting Kernel” with a block of messages including the this one: "FileNotFoundError: [WinError 2] The system cannot find the file specified".

 

There are no issues with the Python Notebook. I have been able to start a python notebook, running python code, SASPy, the cell magic like %%SAS followed by the SAS code fragment using Python kernel.

 

Here is some background information. I have installed Anaconda distribution of Python as well as Jupyter Lab. I have modified the saspy configuration file and also added the path to sspiauth.dll to the system PATH variable. I have also verified that the two files (saspy2j.class and saspy2j.java) are in the pyiom folder.

 

 

Any help toward resolving the issue would be appreciated.

 

Thanks,

 

 

26 REPLIES 26
JackHamilton
Lapis Lazuli | Level 10
Does a SAS cell work in Jupyter Notebook?
I used to have the same problem in Lab, but I can't tell you how I fixed it other than that I reinstalled and updated everything.

muhuri
Calcite | Level 5

Hi,

 

Thank you for a prompt reply.

When SAS kernel is selected, a SAS cell does not work. However, when Python kernel is selected, a SAS cell with %%SAS,   works fine. Despite the re-installation of the Anaconda Distribution of Python, SASPy, and SAS kernel, the issue persists. 

sastpw
SAS Employee

When you say you installed Anaconda and Jupyter lab, do you mean 2 installs? I believe jupyter is already included in the anacaonda install. Have you verified what environments you've install things in comparison to what environment jupyter is running in? I've seen issues before where people have different anaconda environments and have things installed in one but not another and think they are running in the one but it doesn't work.

File not found can also be a permission problem as opposed to the file not existing. Don't know what file it is that isn't found (or the user doesn't have permission to access). This kinda sounds like a mismatch of environments and/or permissions. But there's not enough information to know what the problem really is. Haven't seen this particular error before. 

 

Tom 

muhuri
Calcite | Level 5

Hi Tom

 

 

 

I meant I did  pip install JupyterLab after installing Anaconda,I verified the environments the following ways.

 

(base) C:\Users\Pradip.Muhuri>conda env list

WARNING: The conda.compat module is deprecated and will be removed in a future release.

WARNING: The conda.compat module is deprecated and will be removed in a future release.

# conda environments:

#

base                  *  C:\Users\Pradip.Muhuri\AppData\Local\Continuum\anaconda3

 

 

import sys

print(sys.executable)

C:\Users\Pradip.Muhuri\AppData\Local\Continuum\anaconda3\python.exe

 

Question 1) Is there any other command to check the environments?

 

You said,"File not found can also be a permission problem as opposed to the file not existing." 

 

Question 2) Is there away to check what file that is not found?

 

 

(base) C:\Users\Pradip.Muhuri>jupyter kernelspec listAvailable kernels:  ir         C:\Users\Pradip.Muhuri\AppData\Roaming\jupyter\kernels\ir  python3    C:\Users\Pradip.Muhuri\AppData\Roaming\jupyter\kernels\python3  sas        C:\Users\Pradip.Muhuri\AppData\Roaming\jupyter\kernels\sas

 

Any further guidance will be appreciated.

 

Thanks,

sastpw
SAS Employee

Can you show how you are running jupyter? What's the command you're executing? Can you show the full command line for the process (you can get that from taskmanager)? 

 

Can you run the following from both your command line python and from a python notebook in your jupyter?

 

import os, sys

sys.path

os.environ

 

Those will show the process environments and maybe we'll see something that would account for this.

I don't know what file the error is about, Does it say? I guess not, what do you actually get?

 

Thanks,

Tom

muhuri
Calcite | Level 5

 


# Code executed in Jupyter Notebook (not from the command line yet)
import
sys, os print("Below is the listing of the path information.\n") for p in sys.path: print(p) print("\nBelow is the listing of environment variables.\n") for p in os.environ: print(p)
 
Below is the listing of the path information.

C:\Users\Pradip.Muhuri
C:\Users\Pradip.Muhuri\AppData\Local\Continuum\anaconda3\python37.zip
C:\Users\Pradip.Muhuri\AppData\Local\Continuum\anaconda3\DLLs
C:\Users\Pradip.Muhuri\AppData\Local\Continuum\anaconda3\lib
C:\Users\Pradip.Muhuri\AppData\Local\Continuum\anaconda3

C:\Users\Pradip.Muhuri\AppData\Roaming\Python\Python37\site-packages
C:\Users\Pradip.Muhuri\AppData\Local\Continuum\anaconda3\lib\site-packages
C:\Users\Pradip.Muhuri\AppData\Local\Continuum\anaconda3\lib\site-packages\win32
C:\Users\Pradip.Muhuri\AppData\Local\Continuum\anaconda3\lib\site-packages\win32\lib
C:\Users\Pradip.Muhuri\AppData\Local\Continuum\anaconda3\lib\site-packages\Pythonwin
C:\Users\Pradip.Muhuri\AppData\Local\Continuum\anaconda3\lib\site-packages\IPython\extensions
C:\Users\Pradip.Muhuri\.ipython

Below is the listing of environment variables.

ALLUSERSPROFILE
APPDATA
COMMONPROGRAMFILES
COMMONPROGRAMFILES(X86)
COMMONPROGRAMW6432
COMPUTERNAME
COMSPEC
CONDA_DEFAULT_ENV
CONDA_EXE
CONDA_PROMPT_MODIFIER
CONDA_ROOT
CONDA_SHLVL
DADIR
DRIVERDATA
FPS_BROWSER_APP_PROFILE_STRING
FPS_BROWSER_USER_PROFILE_STRING
HOMEDRIVE
HOMEPATH
LOCALAPPDATA
LOGONSERVER
NUMBER_OF_PROCESSORS
ONEDRIVE
OS
PATH
PATHEXT
PROCESSOR_ARCHITECTURE
PROCESSOR_IDENTIFIER
PROCESSOR_LEVEL
PROCESSOR_REVISION
PROGRAMDATA
PROGRAMFILES
PROGRAMFILES(X86)
PROGRAMW6432
PROMPT
PSMODULEPATH
PUBLIC
ROXIOCENTRAL
SESSIONNAME
SYSTEMDRIVE
SYSTEMROOT
TEMP
TMP
TVDUMPFLAGS
UATDATA
USERDNSDOMAIN
USERDOMAIN
USERDOMAIN_ROAMINGPROFILE
USERNAME
USERPROFILE
WINDIR
CONDA_PREFIX
_SYSP
JPY_INTERRUPT_EVENT
IPY_INTERRUPT_EVENT
JPY_PARENT_PID
TERM
CLICOLOR
PAGER
GIT_PAGER
MPLBACKEND

Thanks,
Pradip
sastpw
SAS Employee

Well, one thing jumps out at me from what you have here. I have anaconda installed on my pc, but on the system as opposed to only in my user directory. Most modules are installed in the [Anaconda]\lib\site-packages directory. For you that’s

C:\Users\Pradip.Muhuri\AppData\Local\Continuum\anaconda3\lib\site-packages

 

and for me it’s

C:\\ProgramData\\Anaconda3\\lib\\site-packages

 

When I install other modules (saspy, saskernel, …anything) they also go in that same site-packages directory.

You have an extra directory ahead of that in your path:

C:\Users\Pradip.Muhuri\AppData\Roaming\Python\Python37\site-packages

 

I’m curious what’s installed in that directory, and as it is ‘roaming’ not ‘local’ are the permissions different in any way?

What id is Jupyter running as? What’s in that directory, and what’s in the main lib\site-packages, w.r.t Jupyter, saspy, sas_kernel, at least?

 

Thanks,

Tom

sastpw
SAS Employee

Also, googling the error message you provided about file not found and anaconda, shows a number of things like this.

Here's one that sounds similar as it has something to do with the kernels not working and getting that error. Also they seem to install parts with --user, which I'm guessing is how you're installing things? I'm not familiar with using --user for anything, so I'm not sure what issues might show up with that, but this seems to be similar:

https://github.com/jupyter/notebook/issues/4079

 

Tom

muhuri
Calcite | Level 5

Hi Tom,

 

In the past, I got the best support from SAS Institute on this issue. SAS_kernel was upgraded, uninstalled, and then installed. But the issue remained unresolved. Then I started looking for support in this forum.

 

 Thank you for all your continued support and guidance.

 

Below is some additional information with respect to your recent queries.

 

 

import os
print(os.listdir("C:/Users/Pradip.Muhuri/AppData/Roaming")) 
 
['Adobe', 'CheckPoint', 'Chrome', 'Cofense', 'Jedi', 'jupyter', 'Macromedia', 'Microsoft', 'Mozilla', 'Notepad++', 'PKWARE', 'Python', 'RStudio', 'SAS', 'Sun', 'VMware', 'webex']
In [44]:
import os
print(os.listdir("C:/Users/Pradip.Muhuri/AppData/Roaming/Jupyter"))
    
 
['kernels', 'nbsignatures.db', 'notebook_secret', 'runtime']
In [45]:
import os
print(os.listdir("C:/Users/Pradip.Muhuri/AppData/Roaming/Jupyter/kernels"))
    
 
['ir', 'python3', 'sas']
In [46]:
import os
for p in os.listdir("C:/Users/Pradip.Muhuri/AppData/Local/Continuum/anaconda3/lib/site-packages"):
    print(p)
 
adodbapi
alabaster
alabaster-0.7.12.dist-info
anaconda_client-1.7.2-py3.7.egg-info
anaconda_navigator
anaconda_navigator-1.9.7-py3.7.egg-info
anaconda_project
anaconda_project-0.8.2-py3.7.egg-info
asn1crypto
asn1crypto-0.24.0-py3.7.egg-info
astroid
astroid-2.2.5.dist-info
astropy
astropy-3.1.2-py3.7.egg-info
atomicwrites
atomicwrites-1.3.0-py3.7.egg-info
attr
attrs-19.1.0.dist-info
babel
Babel-2.6.0-py3.7.egg-info
backcall
backcall-0.1.0.dist-info
backports
backports.os-0.1.1-py3.7.egg-info
backports.shutil_get_terminal_size-1.0.0.dist-info
beautifulsoup4-4.7.1.dist-info
binstar_client
bitarray
bitarray-0.8.3-py3.7.egg-info
bkcharts
bkcharts-0.2-py3.7.egg-info
bleach
bleach-3.1.0-py3.7.egg-info
bokeh
bokeh-1.0.4.dist-info
boto
boto-2.49.0-py3.7.egg-info
bottleneck
Bottleneck-1.2.1-py3.7.egg-info
bs4
certifi
certifi-2019.03.09-py3.7.egg-info
cffi
cffi-1.12.2.dist-info
chardet
chardet-3.0.4-py3.7.egg-info
click
Click-7.0-py3.7.egg-info
cloudpickle
cloudpickle-0.8.0.dist-info
clyent
clyent-1.2.2-py3.7.egg-info
colorama
colorama-0.4.1-py3.7.egg-info
comtypes
comtypes-1.1.7-py3.7.egg-info
conda
conda-4.6.11-py3.7.egg-info
conda_build
conda_build-3.17.8-py3.7.egg-info
conda_env
conda_verify
conda_verify-3.1.1-py3.7.egg-info
contextlib2-0.5.5-py3.7.egg-info
contextlib2.py
Crypto
cryptography
cryptography-2.6.1.dist-info
curl
cycler-0.10.0-py3.7.egg-info
cycler.py
Cython
Cython-0.29.6.dist-info
cython.py
cytoolz
cytoolz-0.9.0.1-py3.7.egg-info
dask
dask-1.1.4.dist-info
dateutil
decorator-4.4.0.dist-info
decorator.py
defusedxml
defusedxml-0.5.0-py3.7.egg-info
distributed
distributed-1.26.0-py3.7.egg-info
docutils
docutils-0.14-py3.7.egg-info
easy_install.py
entrypoints-0.3-py3.7.egg-info
entrypoints.py
et_xmlfile
et_xmlfile-1.0.1-py3.7.egg-info
fastcache
fastcache-1.0.2-py3.7.egg-info
filelock-3.0.10.dist-info
filelock.py
flask
Flask-1.0.2.dist-info
future
future-0.17.1-py3.7.egg-info
gevent
gevent-1.4.0-py3.7.egg-info
glob2
glob2-0.6-py3.7.egg-info
greenlet-0.4.15.dist-info
greenlet.cp37-win_amd64.pyd
h5py
h5py-2.9.0.dist-info
heapdict-1.0.0-py3.7.egg-info
heapdict.py
html5lib
html5lib-1.0.1.dist-info
idna
idna-2.8-py3.7.egg-info
imageio
imageio-2.5.0-py3.7.egg-info
imagesize-1.1.0.dist-info
imagesize.py
importlib_metadata
importlib_metadata-0.0.0.dist-info
ipykernel
ipykernel-5.1.0.dist-info
ipykernel_launcher.py
IPython
ipython-7.4.0.dist-info
ipython_genutils
ipython_genutils-0.2.0-py3.7.egg-info
ipywidgets
ipywidgets-7.4.2.dist-info
isapi
isort
isort-4.3.16.dist-info
isympy.py
itsdangerous
itsdangerous-1.1.0.dist-info
jdcal-1.4-py3.7.egg-info
jdcal.py
jedi
jedi-0.13.3-py3.7.egg-info
jinja2
Jinja2-2.10-py3.7.egg-info
jsonschema
jsonschema-3.0.1-py3.7.egg-info
jupyter-1.0.0.dist-info
jupyter.py
jupyterlab
jupyterlab-0.35.4-py3.7.egg-info
jupyterlab_server
jupyterlab_server-0.2.0.dist-info
jupyter_client
jupyter_client-5.2.4.dist-info
jupyter_console
jupyter_console-6.0.0-py3.7.egg-info
jupyter_core
jupyter_core-4.4.0.dist-info
keyring
keyring-18.0.0.dist-info
kiwisolver-1.0.1-py3.7.egg-info
kiwisolver.cp37-win_amd64.pyd
lazy_object_proxy
lazy_object_proxy-1.3.1-py3.7.egg-info
libarchive
libarchive_c-2.8-py3.7.egg-info
libfuturize
libpasteurize
lief
llvmlite
llvmlite-0.28.0-py3.7.egg-info
locket
locket-0.2.0-py3.7.egg-info
lxml
lxml-4.3.2.dist-info
markupsafe
MarkupSafe-1.1.1.dist-info
matplotlib
matplotlib-3.0.3-py3.7-nspkg.pth
matplotlib-3.0.3-py3.7.egg-info
mccabe-0.6.1-py3.7.egg-info
mccabe.py
menuinst
menuinst-1.4.16-py3.7.egg-info
metakernel
metakernel-0.23.0.dist-info
mistune-0.8.4.dist-info
mistune.py
mkl
mkl_fft
mkl_fft-1.0.10-py3.7.egg-info
mkl_random
mkl_random-1.0.2-py3.7.egg-info
more_itertools
more_itertools-6.0.0-py3.7.egg-info
mpl_toolkits
mpmath
mpmath-1.1.0-py3.7.egg-info
msgpack
msgpack-0.6.1.dist-info
multipledispatch
multipledispatch-0.6.0-py3.7.egg-info
navigator_updater
navigator_updater-0.2.1-py3.7.egg-info
nbconvert
nbconvert-5.4.1-py3.7.egg-info
nbformat
nbformat-4.4.0.dist-info
networkx
networkx-2.2-py3.7.egg-info
nltk
nltk-3.4-py3.7.egg-info
nose
nose-1.3.7-py3.7.egg-info
notebook
notebook-5.7.8.dist-info
numba
numba-0.43.1-py3.7.egg-info
numexpr
numexpr-2.6.9-py3.7.egg-info
numpy
numpy-1.16.2-py3.7.egg-info
numpydoc
numpydoc-0.8.0-py3.7.egg-info
olefile
olefile-0.46-py3.7.egg-info
openpyxl
openpyxl-2.6.1.dist-info
OpenSSL
packaging
packaging-19.0.dist-info
pandas
pandas-0.24.2.dist-info
pandocfilters-1.4.2.dist-info
pandocfilters.py
parso
parso-0.3.4.dist-info
partd
partd-0.3.10.dist-info
past
path.py
path.py-11.5.0.dist-info
pathlib2
pathlib2-2.3.3-py3.7.egg-info
patsy
patsy-0.5.1-py3.7.egg-info
pep8-1.7.1-py3.7.egg-info
pep8.py
pexpect
pexpect-4.7.0.dist-info
pickleshare-0.7.5-py3.7.egg-info
pickleshare.py
PIL
Pillow-5.4.1-py3.7.egg-info
pip
pip-19.0.3-py3.7.egg-info
pkginfo
pkginfo-1.5.0.1-py3.7.egg-info
pkg_resources
pluggy
pluggy-0.9.0.dist-info
ply
ply-3.11-py3.7.egg-info
prometheus_client
prometheus_client-0.6.0-py3.7.egg-info
prompt_toolkit
prompt_toolkit-2.0.9.dist-info
psutil
psutil-5.6.1.dist-info
ptyprocess
ptyprocess-0.6.0.dist-info
pvectorc.cp37-win_amd64.pyd
py
py-1.8.0.dist-info
pycodestyle-2.5.0-py3.7.egg-info
pycodestyle.py
pycosat-0.6.3-py3.7.egg-info
pycosat.cp37-win_amd64.pyd
pycparser
pycparser-2.19-py3.7.egg-info
pycrypto-2.6.1-py3.7.egg-info
pycurl-7.43.0.2-py3.7.egg-info
pycurl.cp37-win_amd64.pyd
pyflakes
pyflakes-2.1.1.dist-info
pygments
Pygments-2.4.0.dist-info
pylab.py
pylint
pylint-2.3.1-py3.7.egg-info
pyodbc-4.0.26-py3.7.egg-info
pyodbc.cp37-win_amd64.pyd
pyOpenSSL-19.0.0-py3.7.egg-info
pyparsing-2.3.1.dist-info
pyparsing.py
PyQt5
pyreadline
pyreadline-2.1-py3.7.egg-info
pyrsistent
pyrsistent-0.14.11.dist-info
PySocks-1.6.8-py3.7.egg-info
pytest-4.3.1-py3.7.egg-info
pytest.py
pytest_arraydiff
pytest_arraydiff-0.3.dist-info
pytest_astropy-0.5.0.dist-info
pytest_doctestplus
pytest_doctestplus-0.3.0.dist-info
pytest_openfiles
pytest_openfiles-0.3.2.dist-info
pytest_remotedata
pytest_remotedata-0.3.1.dist-info
pythoncom.py
pythonwin
python_dateutil-2.8.0.dist-info
pytz
pytz-2018.9.dist-info
PyWavelets-1.0.2.dist-info
pywin32-223-py3.7.egg-info
pywin32.pth
pywin32.version.txt
pywin32_system32
pywinpty-0.5.5-py3.7.egg-info
pywt
pyximport
PyYAML-5.1-py3.7.egg-info
pyzmq-18.0.0-py3.7.egg-info
qtawesome
QtAwesome-0.5.7-py3.7.egg-info
qtconsole
qtconsole-4.4.3-py3.7.egg-info
qtpy
QtPy-1.7.0.dist-info
readline.py
README.txt
requests
requests-2.21.0.dist-info
rope
rope-0.12.0-py3.7.egg-info
ruamel_yaml
ruamel_yaml-0.15.46-py3.7.egg-info
run.py
saspy
saspy-3.1.0.dist-info
sas_kernel
SAS_kernel-2.2.0.dist-info
scikit_image-0.14.2-py3.7.egg-info
scikit_learn-0.20.3.dist-info
scipy
scipy-1.2.1-py3.7.egg-info
scripts
seaborn
seaborn-0.9.0.dist-info
send2trash
Send2Trash-1.5.0-py3.7.egg-info
setuptools
setuptools-40.8.0-py3.7.egg-info
simplegeneric-0.8.1-py3.7.egg-info
simplegeneric.py
singledispatch-3.4.0.3-py3.7.egg-info
singledispatch.py
singledispatch_helpers.py
sip.pyd
sip.pyi
sipconfig.py
sipdistutils.py
six-1.12.0-py3.7.egg-info
six.py
skimage
sklearn
snowballstemmer
snowballstemmer-1.2.1-py3.7.egg-info
socks.py
sockshandler.py
sortedcollections
sortedcollections-1.1.2.dist-info
sortedcontainers
sortedcontainers-2.1.0-py3.7.egg-info
soupsieve
soupsieve-1.8.dist-info
sphinx
Sphinx-1.8.5-py3.7.egg-info
sphinxcontrib
sphinxcontrib_websupport-1.1.0-py3.7-nspkg.pth
sphinxcontrib_websupport-1.1.0-py3.7.egg-info
spyder
spyder-3.3.3.dist-info
spyder_breakpoints
spyder_io_dcm
spyder_io_hdf5
spyder_kernels
spyder_kernels-0.4.2.dist-info
spyder_profiler
spyder_pylint
sqlalchemy
SQLAlchemy-1.3.1.dist-info
statsmodels
statsmodels-0.9.0-py3.7.egg-info
sympy
sympy-1.3-py3.7.egg-info
tables
tables-3.5.1-py3.7.egg-info
tblib
tblib-1.3.2-py3.7.egg-info
terminado
terminado-0.8.1-py3.7.egg-info
testpath
testpath-0.4.2.dist-info
tests
test_data
test_path.py
test_pycosat.py
tlz
toolz
toolz-0.9.0-py3.7.egg-info
tornado
tornado-6.0.2.dist-info
tqdm
tqdm-4.31.1.dist-info
traitlets
traitlets-4.3.2.dist-info
unicodecsv
unicodecsv-0.14.1-py3.7.egg-info
urllib3
urllib3-1.24.1-py3.7.egg-info
wcwidth
wcwidth-0.1.7-py3.7.egg-info
webencodings
webencodings-0.5.1-py3.7.egg-info
werkzeug
Werkzeug-0.14.1-py3.7.egg-info
wheel
wheel-0.33.1-py3.7.egg-info
widgetsnbextension
widgetsnbextension-3.4.2-py3.7.egg-info
win32
win32com
win32comext
wincertstore-0.2-py3.7.egg-info
wincertstore.py
winpty
win_inet_pton-1.1.0-py3.7.egg-info
win_inet_pton.py
win_unicode_console
win_unicode_console-0.5-py3.7.egg-info
wrapt
wrapt-1.11.1.dist-info
xlrd
xlrd-1.2.0.dist-info
xlsxwriter
XlsxWriter-1.1.5.dist-info
xlwings
xlwings-0.15.4-py3.7.egg-info
xlwt
xlwt-1.3.0-py3.7.egg-info
xonsh
yaml
zict
zict-0.1.4-py3.7.egg-info
zipp-0.3.3.dist-info
zipp.py
zmq
_cffi_backend.cp37-win_amd64.pyd
_pylief.pyd
_pyrsistent_version.py
_pytest
_yaml.cp37-win_amd64.pyd
__pycache__
~aspy-2.4.5.dist-info
In [ ]:
 

 

sastpw
SAS Employee

ok, but what's installed in  C:\Users\Pradip.Muhuri\AppData\Roaming\Python\Python37\site-packages?

Thanks,

Tom

muhuri
Calcite | Level 5

Hi Tom,

 

import os
print(os.listdir("C:/Users/Pradip.Muhuri/AppData/Roaming/Python/Python37/site-packages")) 
 
[]

It appears that there is nothing is in this subfolder. Shall I delete this folder?

 

Thanks,

 

muhuri
Calcite | Level 5

Hi Tom,

My reply-post probably did not go through, and I am now re-sending this.

Below is some information with respect to your recent queries.

Thanks for your continued support!

 

 

import os
print(os.listdir("C:/Users/Pradip.Muhuri/AppData/Roaming")) 
 
['Adobe', 'CheckPoint', 'Chrome', 'Cofense', 'Jedi', 'jupyter', 'Macromedia', 'Microsoft', 'Mozilla', 'Notepad++', 'PKWARE', 'Python', 'RStudio', 'SAS', 'Sun', 'VMware', 'webex']
In [44]:
import os
print(os.listdir("C:/Users/Pradip.Muhuri/AppData/Roaming/Jupyter"))
    
 
['kernels', 'nbsignatures.db', 'notebook_secret', 'runtime']
In [45]:
import os
print(os.listdir("C:/Users/Pradip.Muhuri/AppData/Roaming/Jupyter/kernels"))
    
 
['ir', 'python3', 'sas']
In [46]:
import os
for p in os.listdir("C:/Users/Pradip.Muhuri/AppData/Local/Continuum/anaconda3/lib/site-packages"):
    print(p)
 
adodbapi
alabaster
alabaster-0.7.12.dist-info
anaconda_client-1.7.2-py3.7.egg-info
anaconda_navigator
anaconda_navigator-1.9.7-py3.7.egg-info
anaconda_project
anaconda_project-0.8.2-py3.7.egg-info
asn1crypto
asn1crypto-0.24.0-py3.7.egg-info
astroid
astroid-2.2.5.dist-info
astropy
astropy-3.1.2-py3.7.egg-info
atomicwrites
atomicwrites-1.3.0-py3.7.egg-info
attr
attrs-19.1.0.dist-info
babel
Babel-2.6.0-py3.7.egg-info
backcall
backcall-0.1.0.dist-info
backports
backports.os-0.1.1-py3.7.egg-info
backports.shutil_get_terminal_size-1.0.0.dist-info
beautifulsoup4-4.7.1.dist-info
binstar_client
bitarray
bitarray-0.8.3-py3.7.egg-info
bkcharts
bkcharts-0.2-py3.7.egg-info
bleach
bleach-3.1.0-py3.7.egg-info
bokeh
bokeh-1.0.4.dist-info
boto
boto-2.49.0-py3.7.egg-info
bottleneck
Bottleneck-1.2.1-py3.7.egg-info
bs4
certifi
certifi-2019.03.09-py3.7.egg-info
cffi
cffi-1.12.2.dist-info
chardet
chardet-3.0.4-py3.7.egg-info
click
Click-7.0-py3.7.egg-info
cloudpickle
cloudpickle-0.8.0.dist-info
clyent
clyent-1.2.2-py3.7.egg-info
colorama
colorama-0.4.1-py3.7.egg-info
comtypes
comtypes-1.1.7-py3.7.egg-info
conda
conda-4.6.11-py3.7.egg-info
conda_build
conda_build-3.17.8-py3.7.egg-info
conda_env
conda_verify
conda_verify-3.1.1-py3.7.egg-info
contextlib2-0.5.5-py3.7.egg-info
contextlib2.py
Crypto
cryptography
cryptography-2.6.1.dist-info
curl
cycler-0.10.0-py3.7.egg-info
cycler.py
Cython
Cython-0.29.6.dist-info
cython.py
cytoolz
cytoolz-0.9.0.1-py3.7.egg-info
dask
dask-1.1.4.dist-info
dateutil
decorator-4.4.0.dist-info
decorator.py
defusedxml
defusedxml-0.5.0-py3.7.egg-info
distributed
distributed-1.26.0-py3.7.egg-info
docutils
docutils-0.14-py3.7.egg-info
easy_install.py
entrypoints-0.3-py3.7.egg-info
entrypoints.py
et_xmlfile
et_xmlfile-1.0.1-py3.7.egg-info
fastcache
fastcache-1.0.2-py3.7.egg-info
filelock-3.0.10.dist-info
filelock.py
flask
Flask-1.0.2.dist-info
future
future-0.17.1-py3.7.egg-info
gevent
gevent-1.4.0-py3.7.egg-info
glob2
glob2-0.6-py3.7.egg-info
greenlet-0.4.15.dist-info
greenlet.cp37-win_amd64.pyd
h5py
h5py-2.9.0.dist-info
heapdict-1.0.0-py3.7.egg-info
heapdict.py
html5lib
html5lib-1.0.1.dist-info
idna
idna-2.8-py3.7.egg-info
imageio
imageio-2.5.0-py3.7.egg-info
imagesize-1.1.0.dist-info
imagesize.py
importlib_metadata
importlib_metadata-0.0.0.dist-info
ipykernel
ipykernel-5.1.0.dist-info
ipykernel_launcher.py
IPython
ipython-7.4.0.dist-info
ipython_genutils
ipython_genutils-0.2.0-py3.7.egg-info
ipywidgets
ipywidgets-7.4.2.dist-info
isapi
isort
isort-4.3.16.dist-info
isympy.py
itsdangerous
itsdangerous-1.1.0.dist-info
jdcal-1.4-py3.7.egg-info
jdcal.py
jedi
jedi-0.13.3-py3.7.egg-info
jinja2
Jinja2-2.10-py3.7.egg-info
jsonschema
jsonschema-3.0.1-py3.7.egg-info
jupyter-1.0.0.dist-info
jupyter.py
jupyterlab
jupyterlab-0.35.4-py3.7.egg-info
jupyterlab_server
jupyterlab_server-0.2.0.dist-info
jupyter_client
jupyter_client-5.2.4.dist-info
jupyter_console
jupyter_console-6.0.0-py3.7.egg-info
jupyter_core
jupyter_core-4.4.0.dist-info
keyring
keyring-18.0.0.dist-info
kiwisolver-1.0.1-py3.7.egg-info
kiwisolver.cp37-win_amd64.pyd
lazy_object_proxy
lazy_object_proxy-1.3.1-py3.7.egg-info
libarchive
libarchive_c-2.8-py3.7.egg-info
libfuturize
libpasteurize
lief
llvmlite
llvmlite-0.28.0-py3.7.egg-info
locket
locket-0.2.0-py3.7.egg-info
lxml
lxml-4.3.2.dist-info
markupsafe
MarkupSafe-1.1.1.dist-info
matplotlib
matplotlib-3.0.3-py3.7-nspkg.pth
matplotlib-3.0.3-py3.7.egg-info
mccabe-0.6.1-py3.7.egg-info
mccabe.py
menuinst
menuinst-1.4.16-py3.7.egg-info
metakernel
metakernel-0.23.0.dist-info
mistune-0.8.4.dist-info
mistune.py
mkl
mkl_fft
mkl_fft-1.0.10-py3.7.egg-info
mkl_random
mkl_random-1.0.2-py3.7.egg-info
more_itertools
more_itertools-6.0.0-py3.7.egg-info
mpl_toolkits
mpmath
mpmath-1.1.0-py3.7.egg-info
msgpack
msgpack-0.6.1.dist-info
multipledispatch
multipledispatch-0.6.0-py3.7.egg-info
navigator_updater
navigator_updater-0.2.1-py3.7.egg-info
nbconvert
nbconvert-5.4.1-py3.7.egg-info
nbformat
nbformat-4.4.0.dist-info
networkx
networkx-2.2-py3.7.egg-info
nltk
nltk-3.4-py3.7.egg-info
nose
nose-1.3.7-py3.7.egg-info
notebook
notebook-5.7.8.dist-info
numba
numba-0.43.1-py3.7.egg-info
numexpr
numexpr-2.6.9-py3.7.egg-info
numpy
numpy-1.16.2-py3.7.egg-info
numpydoc
numpydoc-0.8.0-py3.7.egg-info
olefile
olefile-0.46-py3.7.egg-info
openpyxl
openpyxl-2.6.1.dist-info
OpenSSL
packaging
packaging-19.0.dist-info
pandas
pandas-0.24.2.dist-info
pandocfilters-1.4.2.dist-info
pandocfilters.py
parso
parso-0.3.4.dist-info
partd
partd-0.3.10.dist-info
past
path.py
path.py-11.5.0.dist-info
pathlib2
pathlib2-2.3.3-py3.7.egg-info
patsy
patsy-0.5.1-py3.7.egg-info
pep8-1.7.1-py3.7.egg-info
pep8.py
pexpect
pexpect-4.7.0.dist-info
pickleshare-0.7.5-py3.7.egg-info
pickleshare.py
PIL
Pillow-5.4.1-py3.7.egg-info
pip
pip-19.0.3-py3.7.egg-info
pkginfo
pkginfo-1.5.0.1-py3.7.egg-info
pkg_resources
pluggy
pluggy-0.9.0.dist-info
ply
ply-3.11-py3.7.egg-info
prometheus_client
prometheus_client-0.6.0-py3.7.egg-info
prompt_toolkit
prompt_toolkit-2.0.9.dist-info
psutil
psutil-5.6.1.dist-info
ptyprocess
ptyprocess-0.6.0.dist-info
pvectorc.cp37-win_amd64.pyd
py
py-1.8.0.dist-info
pycodestyle-2.5.0-py3.7.egg-info
pycodestyle.py
pycosat-0.6.3-py3.7.egg-info
pycosat.cp37-win_amd64.pyd
pycparser
pycparser-2.19-py3.7.egg-info
pycrypto-2.6.1-py3.7.egg-info
pycurl-7.43.0.2-py3.7.egg-info
pycurl.cp37-win_amd64.pyd
pyflakes
pyflakes-2.1.1.dist-info
pygments
Pygments-2.4.0.dist-info
pylab.py
pylint
pylint-2.3.1-py3.7.egg-info
pyodbc-4.0.26-py3.7.egg-info
pyodbc.cp37-win_amd64.pyd
pyOpenSSL-19.0.0-py3.7.egg-info
pyparsing-2.3.1.dist-info
pyparsing.py
PyQt5
pyreadline
pyreadline-2.1-py3.7.egg-info
pyrsistent
pyrsistent-0.14.11.dist-info
PySocks-1.6.8-py3.7.egg-info
pytest-4.3.1-py3.7.egg-info
pytest.py
pytest_arraydiff
pytest_arraydiff-0.3.dist-info
pytest_astropy-0.5.0.dist-info
pytest_doctestplus
pytest_doctestplus-0.3.0.dist-info
pytest_openfiles
pytest_openfiles-0.3.2.dist-info
pytest_remotedata
pytest_remotedata-0.3.1.dist-info
pythoncom.py
pythonwin
python_dateutil-2.8.0.dist-info
pytz
pytz-2018.9.dist-info
PyWavelets-1.0.2.dist-info
pywin32-223-py3.7.egg-info
pywin32.pth
pywin32.version.txt
pywin32_system32
pywinpty-0.5.5-py3.7.egg-info
pywt
pyximport
PyYAML-5.1-py3.7.egg-info
pyzmq-18.0.0-py3.7.egg-info
qtawesome
QtAwesome-0.5.7-py3.7.egg-info
qtconsole
qtconsole-4.4.3-py3.7.egg-info
qtpy
QtPy-1.7.0.dist-info
readline.py
README.txt
requests
requests-2.21.0.dist-info
rope
rope-0.12.0-py3.7.egg-info
ruamel_yaml
ruamel_yaml-0.15.46-py3.7.egg-info
run.py
saspy
saspy-3.1.0.dist-info
sas_kernel
SAS_kernel-2.2.0.dist-info
scikit_image-0.14.2-py3.7.egg-info
scikit_learn-0.20.3.dist-info
scipy
scipy-1.2.1-py3.7.egg-info
scripts
seaborn
seaborn-0.9.0.dist-info
send2trash
Send2Trash-1.5.0-py3.7.egg-info
setuptools
setuptools-40.8.0-py3.7.egg-info
simplegeneric-0.8.1-py3.7.egg-info
simplegeneric.py
singledispatch-3.4.0.3-py3.7.egg-info
singledispatch.py
singledispatch_helpers.py
sip.pyd
sip.pyi
sipconfig.py
sipdistutils.py
six-1.12.0-py3.7.egg-info
six.py
skimage
sklearn
snowballstemmer
snowballstemmer-1.2.1-py3.7.egg-info
socks.py
sockshandler.py
sortedcollections
sortedcollections-1.1.2.dist-info
sortedcontainers
sortedcontainers-2.1.0-py3.7.egg-info
soupsieve
soupsieve-1.8.dist-info
sphinx
Sphinx-1.8.5-py3.7.egg-info
sphinxcontrib
sphinxcontrib_websupport-1.1.0-py3.7-nspkg.pth
sphinxcontrib_websupport-1.1.0-py3.7.egg-info
spyder
spyder-3.3.3.dist-info
spyder_breakpoints
spyder_io_dcm
spyder_io_hdf5
spyder_kernels
spyder_kernels-0.4.2.dist-info
spyder_profiler
spyder_pylint
sqlalchemy
SQLAlchemy-1.3.1.dist-info
statsmodels
statsmodels-0.9.0-py3.7.egg-info
sympy
sympy-1.3-py3.7.egg-info
tables
tables-3.5.1-py3.7.egg-info
tblib
tblib-1.3.2-py3.7.egg-info
terminado
terminado-0.8.1-py3.7.egg-info
testpath
testpath-0.4.2.dist-info
tests
test_data
test_path.py
test_pycosat.py
tlz
toolz
toolz-0.9.0-py3.7.egg-info
tornado
tornado-6.0.2.dist-info
tqdm
tqdm-4.31.1.dist-info
traitlets
traitlets-4.3.2.dist-info
unicodecsv
unicodecsv-0.14.1-py3.7.egg-info
urllib3
urllib3-1.24.1-py3.7.egg-info
wcwidth
wcwidth-0.1.7-py3.7.egg-info
webencodings
webencodings-0.5.1-py3.7.egg-info
werkzeug
Werkzeug-0.14.1-py3.7.egg-info
wheel
wheel-0.33.1-py3.7.egg-info
widgetsnbextension
widgetsnbextension-3.4.2-py3.7.egg-info
win32
win32com
win32comext
wincertstore-0.2-py3.7.egg-info
wincertstore.py
winpty
win_inet_pton-1.1.0-py3.7.egg-info
win_inet_pton.py
win_unicode_console
win_unicode_console-0.5-py3.7.egg-info
wrapt
wrapt-1.11.1.dist-info
xlrd
xlrd-1.2.0.dist-info
xlsxwriter
XlsxWriter-1.1.5.dist-info
xlwings
xlwings-0.15.4-py3.7.egg-info
xlwt
xlwt-1.3.0-py3.7.egg-info
xonsh
yaml
zict
zict-0.1.4-py3.7.egg-info
zipp-0.3.3.dist-info
zipp.py
zmq
_cffi_backend.cp37-win_amd64.pyd
_pylief.pyd
_pyrsistent_version.py
_pytest
_yaml.cp37-win_amd64.pyd
__pycache__
~aspy-2.4.5.dist-info
In [ ]:
 
sastpw
SAS Employee

But C:\Users\Pradip.Muhuri\AppData\Roaming\Python\Python37\site-packages isn't in there.

muhuri
Calcite | Level 5

suga badge.PNGThe SAS Users Group for Administrators (SUGA) is open to all SAS administrators and architects who install, update, manage or maintain a SAS deployment. 

Join SUGA 

Get Started with SAS Information Catalog in SAS Viya

SAS technical trainer Erin Winters shows you how to explore assets, create new data discovery agents, schedule data discovery agents, and much more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 26 replies
  • 3198 views
  • 1 like
  • 3 in conversation