Ubuntu DynamicTriad environment

Boots

cd /etc/profile.d    vim boost.h

#!/bin/sh
BOOST_ROOT=/下载/boost_1_67_0
BOOST_INCLUDE=/usr/local/include/boost
BOOST_LIB=/usr/local/lib
export BOOST_INCLUDE BOOST_LIB BOOST_ROOT

=================================================================================================

eigen3

https://www.cnblogs.com/newneul/p/8256803.html

/usr/local/Eigen

============================================================================================

graph-tool

https://blog.csdn.net/u013066730/article/details/79583697

===========================================================================================

tensorflow

================================================================================================

Error:   UnicodeDecodeError: 'ascii' codec can't decode byte 0xe6 in position 14: ordinal not in range(128)

Solution:          import sys

                          reload(sys)
                          sys.setdefaultencoding('utf-8')

猜你喜欢

转载自blog.csdn.net/weixin_33030509/article/details/82662195