Spyder无法导入plyfile

时间:2016-09-28 08:34:08

标签: python

我已经使用pip3在Anaconda3的Scripts子目录中安装了plyfile(我运行Windows 10)。当我输入命令     import plyfile 在Python 3.5 Shell中,命令执行没有问题 但是当我移动到Spyder并在控制台中输入相同的命令时,我收到一条错误消息:

   import plyfile
   Traceback (most recent call last):

   File "<ipython-input-3-db7ef797d821>", line 1, in <module>
   import plyfile

   ImportError: No module named 'plyfile'

我尝试使用Windows Commander将文件的路径添加到环境中,然后使用C:\命令:

 sys.path.append(C:\Users\Alexandros_7\Downloads\plyfile-0.4)

但收到了错误消息:

 "sys.path.append" is not recognized as an internal or external command, operable program or batch file

我还从Spyder的控制台尝试了以下命令:

  import sys
  sys.path.append("C:\\Users\\Alexandros\\Downloads\\plyfile")

执行这些命令没有问题。然后我输入,导入plyfile,我收到了同样的错误信息 - 即&#34;没有名为&#34的文件; plyfile&#34;&#34;。

你能帮我吗?

1 个答案:

答案 0 :(得分:0)

尝试给Spyder提供与Anaconda相同的环境路径,在您的情况下是安装的plyfile的路径,例如:

your_module位于:“C:\ Users \ Alexandros \ your_module.py”

Spyder中的

: 让我们将定位的路径添加到系统环境

import sys
sys.path.append("C:\Users\Alexandros\") #need string

让我们导入您的模块

import your_module
reload(your_module)