赞
踩
本来想这样安装fastText,结果一个问题接着一个问题的跳
git clone https://github.com/facebookresearch/fastText.git
cd fastText
# 使用pip安装python中的fasttext工具包
sudo pip install .
先是
unable to access 'https://github.com/facebookresearch/fastText.git/
于是我想可能是被墙了,于是用github加速器(各大程序网站上都有),并且改了服务器代理
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080
结果:
然后我想到了深克隆
git clone --depth 1 git://github.com/facebookresearch/fastText.git/
结果
git config --global --unset http.proxy
git config --global --unset https.proxy
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。