无法导入名称 - >尝试安装时没有匹配的分发

时间:2017-03-18 23:34:45

标签: python pip install importerror

我没有使用Python的经验。只是尝试运行我从GitHub下载的程序。尝试运行它有很多问题。添加PATH并安装几个模块(?)后,我卡住了:

当我输入“python filename.py”时,我收到错误:

  

ImportError:无法导入名称:'SequentialDataSet'

我用不同的名字得到了同样的错误。只需键入“pip install(name)”即可修复它。安装了另一个名称再次出现同样的错误,但现在我遇到了错误:

  

无法找到满足要求的版本   SequentialDataSet(来自版本:)。找不到匹配的分布   对于SequentialDataSet。

如果您需要任何信息,请告诉我

由于

2 个答案:

答案 0 :(得分:0)

安装miniconda,然后尝试此

git clone https://github.com/robbiebarrat/rapping-neural-network.git

cd rapping-neural-network/

conda create -p venv -y python=2 scipy 

source activate venv/

pip install -U -r requirements.txt

python deeprap.py

输出:

*Writing the rap 'word by word'*
Alright, building the list of all the rhymes - here are the words that have to be taken into account;

['ve', 'ts', 'cy', 'es', 'ed', 'ke', 'ss', 'ps', 'ft', 'te', '', 'or', 'rn', 'em', 'll', 'le', 'ne', 'me', 'ds', 'hy', 'ry', 'ep', 'ty', 'rk', 'gs', 'ys', 'wn', 'ng', 'lt', 'ny', 'ap', 'ut', 'en', 'im', 'it', 'ch', 'ic', 'ee', 'ly', 'ez', 'ms', 'rd', 'ge', 'er', 'as', 'st', 'tt', 'ns', "'t", 'nt', 'at', 'ck', 'he', 'dy', 'ks', 'ce', 'rl', 'rt', 'pp', 'ls', 'el', 'ib', 'be', 'tz', 'fe', 'de', 'au', 'of', "'s", 'ip', 'on', 'ew', 'os', 'ey', 'sy', 'da', 'an', 're', 'th', 'ld', 'cs', 'op', 'ad', 'se', 'ao', 'ix', 'ct']


Alright, here are all of the possible rhymes from the lyrics it can draw from.
['ve', 'ts', 'cy', 'es', 'ed', 'ke', 'ss', 'ps', 'ft', 'te', '', 'or', 'rn', 'em', 'll', 'le', 'ne', 'me', 'ds', 'hy', 'ry', 'ep', 'ty', 'rk', 'gs', 'ys', 'wn', 'ng', 'lt', 'ny', 'ap', 'ut', 'en', 'im', 'it', 'ch', 'ic', 'ee', 'ly', 'ez', 'ms', 'rd', 'ge', 'er', 'as', 'st', 'tt', 'ns', "'t", 'nt', 'at', 'ck', 'he', 'dy', 'ks', 'ce', 'rl', 'rt', 'pp', 'ls', 'el', 'ib', 'be', 'tz', 'fe', 'de', 'au', 'of', "'s", 'ip', 'on', 'ew', 'os', 'ey', 'sy', 'da', 'an', 're', 'th', 'ld', 'cs', 'op', 'ad', 'se', 'ao', 'ix', 'ct']

Done! Check neural_rap.txt for the finished rap.

答案 1 :(得分:0)

遇到同样的问题。通过从github安装pybrain来修复:

pip install https://github.com/pybrain/pybrain/archive/0.3.3.zip