TensorFlow:Ubuntu下环境搭建及其安装

本文档详述了在Ubuntu 18.0.3上使用pip和virtualenv搭建TensorFlow开发环境的步骤,包括创建虚拟环境、激活与退出、安装TensorFlow、验证安装以及解决可能出现的CPU兼容性问题。
摘要由CSDN通过智能技术生成

TensorFlow安装环境

  • 系统:Ubuntu 18.0.3
  • Python版本:3.6.7(默认安装)
  • 安装方式:pip + virtualenv

检查配置环境

$ python3 --version
$ pip3 --version
$ virtualenv --version

如果已安装这些软件包则可以开始安装TensorFlow,否则安装工具包

$ sudo apt update
$ sudo apt install python3-dev python3-pip
$ sudo pip3 install -U virtualenv  # system-wide install

virtualenv创建虚拟环境

创建虚拟环境目录
$ virtualenv --system-site-packages -p python3 ./venv

--system-site-packages参数使虚拟环境中的Python继承系统全局中Python的属性

文档中相关说明:If you build with virtualenv --system-site-packages ENV, your virtual environment will inherit packages from /usr/lib/python2.7/site-packages (or wherever your global site-packages directory is).

This can be used if you have control over the global site-packages directory, and you want to depend on the packages there. If you want isolation from the global system, do not use this flag.

If you need to change this option after creating a virtual environment, you can add (to turn off) or remove (to turn

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值