原文地址:https://www.jianshu.com/p/2645d8f2e690

另附连接:Linux环境下虚拟环境virtualenv安装和使用

virtualenv 安装

1.Install pip and Virtualenv by issuing the following commands :

 $ sudo easy_install pip
$ pip install --upgrade virtualenv

2.Create a Virtualenv environment by issuing a command of one of the following formats:

 $ virtualenv --system-site-packages [targetDirectory] # for Python 2.7
$ virtualenv --system-site-packages -p python3 [targetDirectory] # for Python 3.n

3.Activate the Virtualenv environment by issuing one of the following commands:

$ cd [targetDirectory]
$ source ./bin/activate # If using bash, sh, ksh, or zsh
$ source ./bin/activate.csh # If using csh or tcsh

The preceding source command should change your prompt to the following:

(targetDirectory)$

4.Ensure pip ≥8.1 is installed:

 (targetDirectory)$ easy_install -U pip

5.退出virtualenv

 (targetDirectory)$ deactivate

安装TensorFlow

1.Issue one of the following commands to install TensorFlow and all the packages that TensorFlow requires into the active Virtualenv environment:

 (targetDirectory)$ pip install --upgrade tensorflow      # for Python 2.7
(targetDirectory)$ pip3 install --upgrade tensorflow # for Python 3.n
[参考链接]

1.Tensorflow 安装指南
2.[]

最新文章

  1. C# Label显示多行文本及换行(WinForm/WebForm)
  2. 安装redis和php的redis扩展
  3. HTTP状态码及其含义
  4. Octopus系列之UploadValues异步上载
  5. 定时5秒之后驻留在元素ID为content元素的内容
  6. angularjs 获取地址传参
  7. 对jQuery.isArray方法的分析
  8. 初谈SQL Server逻辑读、物理读、预读【转】
  9. JavaScript中setTimeout()和setInterval()的区别
  10. 深入理解ajax系列第四篇——FormData
  11. [Python学习] Django 权限控制
  12. github远程仓库初始化配置
  13. 兄弟连学Python-Mysql的操作应用
  14. 使用Python进行OCR -- 识别图片中的文字
  15. jQuery基本的属性操作
  16. JS实现ul,li排序效果
  17. [剑指Offer]48-最长不含重复字符的子字符串(递归思想,循环实现)
  18. maven中distributionManagement
  19. Python3 tuple 函数
  20. spring源码-BeanPostProcessor-3.3

热门文章

  1. win32通用控件
  2. git查看commit提交记录详情
  3. Oracle 全部后台进程简介
  4. Bzoj 2588 Spoj 10628. Count on a tree(树链剖分LCA+主席树)
  5. Intellij IDEA常用配置记录
  6. [Shell]Powershell反弹shell
  7. checkbox取反
  8. OpenFOAM 中边界条件的设定【转载】
  9. GO- 使用JSON
  10. mac使用xposed超详细入门级教程Android Studio-20190930