码迷,mamicode.com
首页 > 系统相关 > 详细

【tensorflow】在 Ubuntu/Linux 环境下安装TF遇到的问题 [Errno 13] Permission denied

时间:2019-09-27 19:04:21      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:style   one   bsp   image   ESS   官网   package   linu   技术   

环境:Ubuntu虚拟机 / python2.7

按照官网安装: $ pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl 

提示:Could not install packages due to an Environment Error: [Errno 13] Permission denied: “。。。balabal”

解决方案:

plan A:在pip之前加:sudo,问题解决!

plan B:还有一个方案是也可以在windows系统下用的,在后面加参数 --user(ps.不过还没亲自试过)

 

测试tensorflow代码:

import tensorflow as tf
hello = tf.constant(Hello, TensorFlow!)
sess = tf.Session()
print sess.run(hello)
a = tf.constant(10)
b = tf.constant(32)
print sess.run(a+b)

技术图片

 

【tensorflow】在 Ubuntu/Linux 环境下安装TF遇到的问题 [Errno 13] Permission denied

标签:style   one   bsp   image   ESS   官网   package   linu   技术   

原文地址:https://www.cnblogs.com/wayne-tao/p/11599508.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!