I use windows 7 without admin rights and i would like to use python3. Even if i set PYTHONPATH, environment variable is ignored. However PYTHONPATH is valid when printed.
>>> print(sys.path)
['c:\\Python365\\python36.zip', 'c:\\Python365']
>>> print(os.environ["PYTHONPATH"])
d:\libs
any idea ?
thank you very much
Gil
PYTHONPATHis meant for a system Python or development installations, but it should not affect applications that embed Python, which need independent control of Python's search path.