Python Path Problem
John Rickman (71) 646 posts |
Python3 is packaged with two repositories. However, Python does not use Run$Path directly but constructs its own path to search for modules.
On my machine, the python path contains the PythonSite location, but not that of PythonUser. Setting the system variable PYTHONPATH to point to …!PythonUser.scripts will cause !Python to append it to sys.path. This works but is there a better way and I am missing something obvious? |