Hi there,
I’m using Pythonista for couple days and I am fairly happy with.
Nevertheless, I’m trying to import some librairies such as:
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import sklearn.linear_model
Seems like there are some incompatibility, here under the trace.
Please help,
Oswald
Traceback (most recent call last):
File "/private/var/mobile/Containers/Shared/AppGroup/8985502A-A0F1-4025-BA7E-58369C1FBDEC/Pythonista3/Documents/site-packages-3/numpy/init.py", line 124, in
from numpy.config import show as show_config
ModuleNotFoundError: No module named 'numpy.config'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/private/var/mobile/Containers/Shared/AppGroup/8985502A-A0F1-4025-BA7E-58369C1FBDEC/Pythonista3/Documents/linear_model.py", line 2, in
import matplotlib.pyplot as plt
File "/var/containers/Bundle/Application/D8D11013-53B3-4F3D-BD17-2AAB6743B611/Pythonista3.app/Frameworks/Py3Kit.framework/pylib/site-packages/matplotlib/init.py", line 181, in
from matplotlib.cbook import is_string_like
File "/var/containers/Bundle/Application/D8D11013-53B3-4F3D-BD17-2AAB6743B611/Pythonista3.app/Frameworks/Py3Kit.framework/pylib/site-packages/matplotlib/cbook.py", line 34, in
import numpy as np
File "/private/var/mobile/Containers/Shared/AppGroup/8985502A-A0F1-4025-BA7E-58369C1FBDEC/Pythonista3/Documents/site-packages-3/numpy/init.py", line 129, in
raise ImportError(msg)
ImportError: Error importing numpy: you should not try to import numpy from
its source directory; please exit the numpy source tree, and relaunch
your python interpreter from there.
Traceback (most recent call last):
File "/private/var/mobile/Containers/Shared/AppGroup/8985502A-A0F1-4025-BA7E-58369C1FBDEC/Pythonista3/Documents/site-packages-3/numpy/init.py", line 124, in
from numpy.config import show as show_config
ModuleNotFoundError: No module named 'numpy.config'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/private/var/mobile/Containers/Shared/AppGroup/8985502A-A0F1-4025-BA7E-58369C1FBDEC/Pythonista3/Documents/linear_model.py", line 2, in
import matplotlib.pyplot as plt
File "/var/containers/Bundle/Application/D8D11013-53B3-4F3D-BD17-2AAB6743B611/Pythonista3.app/Frameworks/Py3Kit.framework/pylib/site-packages/matplotlib/init.py", line 181, in
from matplotlib.cbook import is_string_like
File "/var/containers/Bundle/Application/D8D11013-53B3-4F3D-BD17-2AAB6743B611/Pythonista3.app/Frameworks/Py3Kit.framework/pylib/site-packages/matplotlib/cbook.py", line 34, in
import numpy as np
File "/private/var/mobile/Containers/Shared/AppGroup/8985502A-A0F1-4025-BA7E-58369C1FBDEC/Pythonista3/Documents/site-packages-3/numpy/init.py", line 129, in
raise ImportError(msg)
ImportError: Error importing numpy: you should not try to import numpy from
its source directory; please exit the numpy source tree, and relaunch
your python interpreter from there.