在Jupyter笔记本中,我必须导入Neurokit。
出现此错误:
ImportError:没有名为Neurokit的模块
所以我尝试了:
!pip install neurokit
但出现另一个错误:
IOError:[错误2]没有这样的文件或目录:'README.md'
有人可以帮我吗?
这是错误:
!pip install neurokit
Collecting neurokit
Using cached https://files.pythonhosted.org/packages/aa/e4/aac4c53fb12d52c292988897bff3d003a5798ec582b267f57057bfdf6c31/neurokit-0.2.0.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "c:\users\dell\appdata\local\temp\pip-install-i17inb\neurokit\setup.py", line 39, in <module>
long_description = open('README.md').read(),
IOError: [Errno 2] No such file or directory: 'README.md'
答案 0 :(得分:0)
尝试按照其github page中的指示进行安装:
安装
运行以下命令:
pip install https://github.com/neuropsychology/NeuroKit.py/zipball/master
如果仍然无法使用,请尝试使用缓存的副本 not (从您的日志中,您缓存的 neurokit-0.2.0.tar.gz )以及强制重新安装:
pip install --no-cache-dir --force-reinstall https://github.com/neuropsychology/NeuroKit.py/zipball/master
答案 1 :(得分:0)
这绝对是安装软件包中的错误-他们忘记了将README.md
包含在软件包中。总体而言,他们的installation packages at PyPI很老,最新的是2017年。
直接从存储库安装:
pip install numpy
pip install git+https://github.com/neuropsychology/NeuroKit.py#egg=neurokit