Hi! I have an instruction here https://wiki.sagemath.org/Python3-compatible%20code , how to build sage with python3. But sage uses, I think, its own python3. So when sage wants to import something, sage can't do it, because libs are installed on system python3. Mosule six for example. I had an idea, make smth like this:
import importlib.util spec = importlib.util.spec_from_file_location("six", "/usr/lib/python3/dist-packages/six.py") six = importlib.util.module_from_spec(spec) spec.loader.exec_module(six) but it doesn't work with numpy. Help me please! May be I can change sage python to my system python3? -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-support+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/sage-support/21d2fb8e-1b79-4fe2-b493-808f6fa6940b%40googlegroups.com.