IOError: [Errno 28] No space left on device while installing TensorFlow

前端 未结 5 797
温柔的废话
温柔的废话 2021-01-01 14:48

I am trying to install TensorFlow in my local directory using the following command.

export TF_BINARY_URL=http://storage.googleapis.com/tensorflow/linux/cpu/         


        
5条回答
  •  迷失自我
    2021-01-01 15:49

    Usually, You can set the environment variable 'TMPDIR' to use a different directory other than /tmp or /var/tmp and most programs will honour that.

    You can perhaps try,

    $ export TMPDIR=$HOME/tmp

    and then start your 'pip install'

提交回复
热议问题