我试图从Anaconda Navigator安装vaex应用程序,但它无法启动,并出现错误:ModuleNotFoundError: No module named 'vaex.remote'。所有东西都安装好了,我甚至重新安装了所有东西,但没有得到更好的结果:
~$ conda install -c conda-forge vaex vaex-core vaex-hdf5 vaex-ui vaex-server vaex-ml --force-reinstall --yes
Collecting package metadata (current_repodata.json): done
Solving environment: done
## Package Plan ##
environment location: /home/myusername/anaconda3
added / updated specs:
- vaex
- vaex-core
- vaex-hdf5
- vaex-ml
- vaex-server
- vaex-ui
Preparing transaction: done
Verifying transaction: done
Executing transaction: donePython 3.8.5 (default, Sep 4 2020, 07:30:14)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.19.0 -- An enhanced Interactive Python. Type '?' for help.
In [1]: import vaex.remote
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-e480b6348be7> in <module>
----> 1 import vaex.remote
ModuleNotFoundError: No module named 'vaex.remote'有什么想法吗?
发布于 2020-12-25 00:11:13
对于该特定模块,这是Anaconda上一个非常频繁和有争议的问题。
我建议这种方法来自这个主题,Jovan给出了一个非常好的答案:https://github.com/vaexio/vaex/issues/464
引述如下:
创建一个新的conda env并通过conda forge安装:
conda create --name vaex_env
source activate vaex_enc然后,只需通过conda(forge)安装vaex。
conda install vaex -c conda-forge这也将安装所有必要的依赖项。
这应该行得通!
https://stackoverflow.com/questions/65440536
复制相似问题