如何在spyder anaconda中安装模块?

时间:2019-04-24 14:46:03

标签: module image-registration

我正在尝试在Spyder Anaconda中运行一些代码。我认为它就像导入代码一样简单,但是我收到一条错误消息:

  

ModuleNotFoundError::没有名为“ image_registration”的模块

我知道这意味着Spyder已经不包含image_registration,但是我无法弄清楚如何添加它。

from image_registration import chi2_shift

from image_registration.fft_tools import shift

2 个答案:

答案 0 :(得分:0)

请在anaconda提示符中尝试以下步骤

1. conda create -n myenv
2. activate myenv
3. pip install image_registration
4. conda install spyder
5. spyder

如果您已经在某个环境中安装了image_registration软件包,则可以激活该环境并尝试从激活的环境中打开spyder。

答案 1 :(得分:0)

将您的Anaconda脚本路径(默认= C:\ Users \ userna ** \ Anaconda3 \ Scripts)添加到环境变量,然后打开命令提示符并键入 pip.exe install module_name在您的情况下,pip.exe安装image_registration To install module image Registration