2016-10-10 107 views
1

我閱讀https://github.com/dennybritz/rnn-tutorial-rnnlm中的rnn教程並按照安裝來設置環境。但是我得到了這個我不知道的錯誤。我在Ubuntu 14中將其設置爲virtualenv。我搜索類似的問題並使用它們的解決方案,但它不起作用。從requirenment txt安裝軟件包並失敗

我已經試過的方法:1, 更新gcc 2.重新安裝python-dev 3.安裝libxxx(這個不準確的名稱抱歉,但也有這樣的文件亂七八糟的,所以我不記得)

注:1.我不是Ubuntu專家,所以如果你能幫助我,並希望你能提供詳細的解釋或解決方案,如果你可以。 2.我曾嘗試重新安裝Ubuntu和它不工作

creating build/temp.linux-x86_64-2.7/Modules/2.x 

x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -DHAVE_RL_CALLBACK -DHAVE_RL_CATCH_SIGNAL -DHAVE_RL_COMPLETION_APPEND_CHARACTER -DHAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK -DHAVE_RL_COMPLETION_MATCHES -DHAVE_RL_COMPLETION_SUPPRESS_APPEND -DHAVE_RL_PRE_INPUT_HOOK -I. -I/usr/include/python2.7 -c Modules/2.x/readline.c -o build/temp.linux-x86_64-2.7/Modules/2.x/readline.o 

In file included from Modules/2.x/readline.c:31:0: 

./readline/readline.h:385:1: warning: function declaration isn’t a prototype [-Wstrict-prototypes] 

extern int rl_message(); 

^ 

x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -D_FORTIFY_SOURCE=2 -g -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security build/temp.linux-x86_64-2.7/Modules/2.x/readline.o readline/libreadline.a readline/libhistory.a -lncurses -o build/lib.linux-x86_64-2.7/gnureadline.so 

/usr/bin/ld: cannot find -lncurses 

collect2: error: ld returned 1 exit status 

error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 

---------------------------------------- 
Cleaning up... 
Command /home/shuyu-lyu/venv/bin/python -c "import setuptools, tokenize;__file__='/home/shuyu-lyu/venv/build/gnureadline/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-xF2y3k-record/install-record.txt --single-version-externally-managed --compile --install-headers /home/shuyu-lyu/venv/include/site/python2.7 failed with error code 1 in /home/shuyu-lyu/venv/build/gnureadline 
Traceback (most recent call last): 
    File "/home/shuyu-lyu/venv/bin/pip", line 11, in <module> 
    sys.exit(main()) 
    File "/home/shuyu-lyu/venv/local/lib/python2.7/site-packages/pip/__init__.py", line 185, in main 
    return command.main(cmd_args) 
    File "/home/shuyu-lyu/venv/local/lib/python2.7/site-packages/pip/basecommand.py", line 161, in main 
    text = '\n'.join(complete_log) 
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 66: ordinal not in range(128) 

回答

0

貌似是沒有安裝ncurses庫。如果你在Ubuntu上,你應該首先安裝它

sudo apt-get install libncurses5-dev libncursesw5-dev