gpt4 book ai didi

Python:导入 scipy 导致回溯引用已删除的文件

转载 作者:太空宇宙 更新时间:2023-11-03 11:09:00 28 4
gpt4 key购买 nike

当我尝试在 Python 解释器(版本 2.6.1)中导入 scipy 模块(版本 0.11.0b1)时,我收到以下错误:


Traceback (most recent call last):

File "<stdin>", line 1, in module

File "/Users/...long path.../Desktop/scipy-0.11.0b1/scipy/\__init__.py", line 114, in module

ImportError: Error importing scipy: you cannot import scipy while
being in scipy source directory; please exit the scipy source
tree first, and relaunch your python intepreter.

问题是 python 正在从一个不存在的文件中读取。我不久前从我的桌面删除了 scipy 目录,此后多次尝试重新启动解释器(和计算机)。为什么回溯继续引用不存在的文件?

最佳答案

如下所示添加 scipy 路径。

from cx_Freeze import setup, Executable

include_files = ['C:\\Users\\User\\Anaconda\\Lib\\site-packages\\scipy']

setup(name = "ventana",
options = {'build_exe': {'include_files':include_files}},
version = "0.1",
description = "ventana",
executables = [Executable("REC.py")],)

关于Python:导入 scipy 导致回溯引用已删除的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11069309/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com