linux 安装 pyfasttext 报错

linux 安装 pyfasttext 报错,第1张

一、主要是 pyfasttext 包 无法自动安装所需的包,只能自己看报错,安装好相应的包 可能的包有: numpy cython 二、gcc编译器的问题 需要安装高版本的gcc ``` devtoolset-3对应gcc4.x.x版本 devtoolset-4对应gcc5.x.x版本 devtoolset-6对应gcc6.x.x版本 devtoolset-7对应gcc7.x.x版本 ``` 安装对应的包 ``` yum install centos-release-scl yum install devtoolset-7 ```激活 ``` scl enable devtoolset-7 bash ``` 通过gcc --version,查看是否成功

为了不影响本机的gcc环境,开发工具默认安装在‘/opt/centos/devtoolset-1.1/root/’目录下。需要修改用户的环境变量方可使用:

export CC=/opt/centos/devtoolset-1.1/root/usr/bin/gcc

export CPP=/opt/centos/devtoolset-1.1/root/usr/bin/cpp

export CXX=/opt/centos/devtoolset-1.1/root/usr/bin/c++

推荐使用gcc默认给出的环境变量设置脚本‘/opt/centos/devtoolset-1.1/enable ’。将其加到有需要用户的环境变量中,重新登录即生效。

echo 'source /opt/centos/devtoolset-1.1/enable' >>~/.bash_profile

source /opt/centos/devtoolset-1.1/enable

gcc -v

笔者小试了一把,在CentOS 6.4下,原生GCC版本为4.4.7-3,官网给出的开发版本为4.7.2-5。拿来编译linux-3.9.7内核,生成的文件变小了一丁点,时间没太留意,上应该更快吧。哈哈……

为了不影响本机的gcc环境,开发工具默认安装在‘/opt/centos/devtoolset-1.1/root/’目录下。需要修改用户的环境变量方可使用:

export CC=/opt/centos/devtoolset-1.1/root/usr/bin/gcc

export CPP=/opt/centos/devtoolset-1.1/root/usr/bin/cpp

export CXX=/opt/centos/devtoolset-1.1/root/usr/bin/c++

推荐使用gcc默认给出的环境变量设置脚本‘/opt/centos/devtoolset-1.1/enable ’。将其加到有需要用户的环境变量中,重新登录即生效。

echo 'source /opt/centos/devtoolset-1.1/enable' >>~/.bash_profile

source /opt/centos/devtoolset-1.1/enable

gcc -v

笔者小试了一把,在CentOS 6.4下,原生GCC版本为4.4.7-3,官网给出的开发版本为4.7.2-5。拿来编译linux-3.9.7内核,生成的文件变小了一丁点,时间没太留意,上应该更快吧。哈哈……


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/7172117.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-02
下一篇 2023-04-02

发表评论

登录后才能评论

评论列表(0条)

保存