ImportError:在Anaconda中安装astropy后,没有名为astropy的模块

时间:2015-06-16 16:34:44

标签: python python-2.7 anaconda astropy

所以我正在尝试与@Override public Holder onCreateViewHolder( ViewGroup parent, int viewType) { if (viewType == FOOTER) { return new FooterHolder(); } View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item, parent, false); return new Holder(view); } @Override public void onBindViewHolder(final Holder holder, final int position) { //if footer if (position == items.getSize() - 1) { //do nothing return; } //do regular object bindding } @Override public int getItemViewType(int position) { return (position == items.getSize() - 1) ? FOOTER : ITEM_VIEW_TYPE_ITEM; } @Override public int getItemCount() { //add one for the footer return items.size() + 1; } 合作,我肯定已经下载了它。但是,我收到了一个错误。我正在尝试使用Python 2而不是Python 3.

代码只是:

Astropy

这是给出的错误:

import astropy
astropy.test()

2 个答案:

答案 0 :(得分:1)

在shell上尝试一些事情来检查您的环境并可能了解您的问题:

which python
which conda
conda list

答案 1 :(得分:1)

基本上,修复程序是删除Python 3.4,删除目录,重新安装2.7和Pypm Astropy。不确定究竟发生了什么,但那是修复......