I have compiled from the sources and installed python 3.6 and when I type python3.6 in the console I get:
Could not find platform dependent libraries <exec_prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
Python 3.6.1rc1+ (default, Mar 11 2017, 15:01:24)
[GCC 4.9.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
I have read (here https://docs.python.org/3/using/cmdline.html#environment-variables) that in general I don't need set PYTHONHOME variable (and I don't want set it).
I have installed also other python version (2.7 and 3.4) without problem.
I understand by platform dependent libraries
the shared object libraries that loads python like these:
$ ls /usr/lib/python3.6/ | grep .so
array.cpython-36m-arm-linux-gnueabihf.so
_asyncio.cpython-36m-arm-linux-gnueabihf.so
audioop.cpython-36m-arm-linux-gnueabihf.so
binascii.cpython-36m-arm-linux-gnueabihf.so
_bisect.cpython-36m-arm-linux-gnueabihf.so
_blake2.cpython-36m-arm-linux-gnueabihf.so
cmath.cpython-36m-arm-linux-gnueabihf.so
_codecs_cn.cpython-36m-arm-linux-gnueabihf.so
_codecs_hk.cpython-36m-arm-linux-gnueabihf.so
_codecs_iso2022.cpython-36m-arm-linux-gnueabihf.so
_codecs_jp.cpython-36m-arm-linux-gnueabihf.so
_codecs_kr.cpython-36m-arm-linux-gnueabihf.so
_codecs_tw.cpython-36m-arm-linux-gnueabihf.so
_crypt.cpython-36m-arm-linux-gnueabihf.so
_csv.cpython-36m-arm-linux-gnueabihf.so
_ctypes.cpython-36m-arm-linux-gnueabihf.so
_ctypes_test.cpython-36m-arm-linux-gnueabihf.so
cv2.cpython-36m-arm-linux-gnueabihf.so
_datetime.cpython-36m-arm-linux-gnueabihf.so
_decimal.cpython-36m-arm-linux-gnueabihf.so
_elementtree.cpython-36m-arm-linux-gnueabihf.so
fcntl.cpython-36m-arm-linux-gnueabihf.so
grp.cpython-36m-arm-linux-gnueabihf.so
_hashlib.cpython-36m-arm-linux-gnueabihf.so
_heapq.cpython-36m-arm-linux-gnueabihf.so
json
_json.cpython-36m-arm-linux-gnueabihf.so
_lsprof.cpython-36m-arm-linux-gnueabihf.so
_lzma.cpython-36m-arm-linux-gnueabihf.so
math.cpython-36m-arm-linux-gnueabihf.so
_md5.cpython-36m-arm-linux-gnueabihf.so
mmap.cpython-36m-arm-linux-gnueabihf.so
_multibytecodec.cpython-36m-arm-linux-gnueabihf.so
_multiprocessing.cpython-36m-arm-linux-gnueabihf.so
nis.cpython-36m-arm-linux-gnueabihf.so
_opcode.cpython-36m-arm-linux-gnueabihf.so
ossaudiodev.cpython-36m-arm-linux-gnueabihf.so
parser.cpython-36m-arm-linux-gnueabihf.so
_pickle.cpython-36m-arm-linux-gnueabihf.so
_posixsubprocess.cpython-36m-arm-linux-gnueabihf.so
pyexpat.cpython-36m-arm-linux-gnueabihf.so
_random.cpython-36m-arm-linux-gnueabihf.so
resource.cpython-36m-arm-linux-gnueabihf.so
select.cpython-36m-arm-linux-gnueabihf.so
_sha1.cpython-36m-arm-linux-gnueabihf.so
_sha256.cpython-36m-arm-linux-gnueabihf.so
_sha3.cpython-36m-arm-linux-gnueabihf.so
_sha512.cpython-36m-arm-linux-gnueabihf.so
_socket.cpython-36m-arm-linux-gnueabihf.so
spwd.cpython-36m-arm-linux-gnueabihf.so
_ssl.cpython-36m-arm-linux-gnueabihf.so
_struct.cpython-36m-arm-linux-gnueabihf.so
syslog.cpython-36m-arm-linux-gnueabihf.so
termios.cpython-36m-arm-linux-gnueabihf.so
_testbuffer.cpython-36m-arm-linux-gnueabihf.so
_testcapi.cpython-36m-arm-linux-gnueabihf.so
_testimportmultiple.cpython-36m-arm-linux-gnueabihf.so
_testmultiphase.cpython-36m-arm-linux-gnueabihf.so
unicodedata.cpython-36m-arm-linux-gnueabihf.so
xxlimited.cpython-36m-arm-linux-gnueabihf.so
zlib.cpython-36m-arm-linux-gnueabihf.so
If I print sys.path:
$ python3.6
Could not find platform dependent libraries <exec_prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
Python 3.6.1rc1+ (default, Mar 11 2017, 15:01:24)
[GCC 4.9.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path
['', '/usr/lib/python36.zip', '/usr/lib/python3.6', '/usr/lib/lib-dynload', '/home/pi/.local/lib/python3.6/site-packages', '/usr/lib/python3.6/site-packages']
>>>
you can see that python are searching in that directory.
When I try to import any dependent library, such as math.cpython-36m-arm-linux-gnueabihf.so
its works.
$ python3.6
Could not find platform dependent libraries <exec_prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
Python 3.6.1rc1+ (default, Mar 11 2017, 15:01:24)
[GCC 4.9.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import math
>>> dir(math)
['__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'copysign', 'cos', 'cosh', 'degrees', 'e', 'erf', 'erfc', 'exp', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'gcd', 'hypot', 'inf', 'isclose', 'isfinite', 'isinf', 'isnan', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'log2', 'modf', 'nan', 'pi', 'pow', 'radians', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'tau', 'trunc']
>>> math.cos(2)
-0.4161468365471424
So, the question is what means platform dependent libraries
and where is its default path?