私が入力したときにだから私はどんな理由であれ、scipy.statsをインポートする:インポートscipy.statsエラー
import scipy
それは、何のエラーがうまく機能していないが、私が入力したとき:
import scipy.stats
が突然、私はエラーを得た:
C:\Python34\python.exe "G:/Python Practice/Gui Int/apa.py"
Traceback (most recent call last):
File "<frozen importlib._bootstrap>", line 2218, in _find_and_load_unlocked
AttributeError: 'module' object has no attribute '__path__'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "G:/Python Practice/Gui Int/apa.py", line 2, in <module>
import scipy.stats
ImportError: No module named 'scipy.stats'; 'scipy' is not a package
私はscipy.ioとして別のこのようなを試してみて、それは同様のエラーですが、私が間違っているものを求めることができますか?私のscipyのインストールが壊れていたり、何か?
「scipy import stats」についてはどうですか? – ForceBru
scipyから他のモジュールを使用しようとしましたか? –
助けてくれてありがとう、どういうわけか私はpyファイルをscipy.pyという名前で削除し、それは動作します – KaraiKare