我正在尝试运行一个文件,该文件导入并打印通过pip安装的多个机器学习库的版本。当我在Mac终端中运行代码时,它运行平稳,但是当我尝试在Python 3.7s IDLE中运行它时,出现导入错误。为什么会发生这种情况,我该如何解决?我对Python和终端机还很陌生,所以我的知识非常有限。
我在IDLE和终端机所在的目录中,具有最新版本的scipy,numpy,matplotlib,pandas,statsmodels和sklearn(通过Anaconda获得),并尝试了卸载和重新安装,python,Anaconda和所有库几次,但没有任何效果。
代码如下:
one_or_duration()
这是文件在终端中运行并正确输出:
#scipy
import scipy
print('scipy: %s' % scipy.__version__)
# numpy
import numpy
print('numpy: %s' % numpy.__version__)
# matplotlib
import matplotlib
print('matplotlib: %s' % matplotlib.__version__)
# pandas
import pandas
print('pandas: %s' % pandas.__version__)
# statsmodels
import statsmodels
print('statsmodels: %s' % statsmodels.__version__)
# scikit-learn
import sklearn
print('sklearn: %s' % sklearn.__version__)
这是我在IDLE中的错误消息:
(base)isabellaMac:desktop isabellabaulk$ python versions.py
scipy: 1.3.0
numpy: 1.16.3
matplotlib: 3.0.3
pandas: 0.24.2
statsmodels: 0.9.0
sklearn: 0.20.3
(base) isabellaMac:desktop isabellabaulk$
响应跑步:
Traceback (most recent call last):
File "/Users/isabellabaulk/Desktop/versions.py", line 3, in <module>
import scipy
File "/Users/isabellabaulk/Documents/scipy/__init__.py", line 62, in <module>
from numpy import show_config as show_numpy_config
File "/Users/isabellabaulk/Documents/numpy/__init__.py", line 9, in <module>
from .lib.stride_tricks import broadcast_arrays, broadcast_to
ModuleNotFoundError: No module named 'numpy.lib.stride_tricks'
我进入终端机
import sys; print(sys.executable)
我使用Python:
/anaconda3/bin/python
任何帮助将不胜感激!