Hello,
I'm building Python 3.4.2 from sources, (using a GCC that I originally ported, 
then upgraded on device) on an Android device in an environment that simulates 
a Linux filesystem using fakechroot (Terminal Emulator and KBOX); Python is not 
currently installed in this environment.

I fixed the fakechroot issues I mentioned in my previous email (Import fails in 
setup.py), ran make distclean, then ./configure && make && make install.

Unfortunately, running help() fails with the following traceback

^
SyntaxError: invalid syntax
>>> help()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/python/lib/python3.4/_sitebuiltins.py", line 102, in __call__
    import pydoc
  File "/usr/python/lib/python3.4/pydoc.py", line 62, in <module>
    import platform
  File "/usr/python/lib/python3.4/platform.py", line 115, in <module>
    import sys, os, re, subprocess
  File "/usr/python/lib/python3.4/subprocess.py", line 352, in <module>
    import time
ImportError: dlopen failed: library 
"/usr/python/lib/python3.4/lib-dynload/time.cpython-34m.so" not found

Attempting to import time fails with the following

>>> import time
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: dlopen failed: library 
"/usr/python/lib/python3.4/lib-dynload/time.cpython-34m.so" not found

I've checked the referenced path and that file is there.  Any ideas why 
it...and every other module in the python3.4/lib-dynload folder...fails to load?
-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.
_______________________________________________
Mobile-sig mailing list
[email protected]
https://mail.python.org/mailman/listinfo/mobile-sig

Reply via email to