解决方法
将models的目录加入到python环境变量PYTHONPTAH中
修改 ~/.bashrc 文件
# 在最后添加
export PYTHONPATH="$PYTHONPATH:/home/xxx/anaconda2/lib/python2.7/site-packages/tensorflow/models"
修改完后,使修改生效,命令行执行
此处因为.profile 包含了 .bashrc,所以加载.profile就可以了
source ~/.profile
解决方法
将models的目录加入到python环境变量PYTHONPTAH中
修改 ~/.bashrc 文件
# 在最后添加
export PYTHONPATH="$PYTHONPATH:/home/xxx/anaconda2/lib/python2.7/site-packages/tensorflow/models"
修改完后,使修改生效,命令行执行
此处因为.profile 包含了 .bashrc,所以加载.profile就可以了
source ~/.profile