Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Based on ubuntu16 Python3 tensorflow (TensorFlow environment building)

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

The greatest strength of a person is that he has a powerful brain. Computers, mobile phones and so on are the expansion of the human brain. Today, each of us has the opportunity to reach great heights with the help of intelligence. Therefore, embrace technology, let intelligent products become the expansion of our personal intelligence, better to live and fight.

Use projects to guide learning:

Our goal is to use the most popular Google open source framework, TensorFlow, to build a child learning helper. Similar to the existing products on sale, such as Xiaomi intelligent voice box.

First, install virtual machine VMware Workstation under Windows and install Ubuntu in virtual machine (to make good use of search engine and solve all kinds of simple problems)

Here is a VMware Workstation download address: https://www.jb51.net/softs/19141.html

Ubuntu official website: https://www.ubuntu.com/index_kylin

Installation completed:

Second, install python3 in Ubuntu

Enter the system, right-click the desktop, and click open Terminal

Enter command line mode. Enter python and find that the system comes with python2.7. We are going to install python3

Exit python (with exit ()), type sudo apt-get install python3, and install python3. Has been installed in advance, the installation is python3.5 below is the content shown, the installation is successful.

Third, install TensorFlow

There are many installation methods, you can search on your own. Tensorflow has two versions, CPU and GPU, the latter supports the use of GPU capabilities for data operations, has certain restrictions on the model of GPU, and has to install a bunch of things, which is not necessary for beginners (CPU is officially recommended).

Install pip and virtualenv with the following command

Sudo apt-get install python-pip python-dev python-virtualenvsudo apt-get install python3-pip python3-dev python3-virtualenv

Create a virtualenv environment

Virtualenv-system-site-packages targetDirectory

Note: the "targetDirectory" here defines the root directory of virtualenv, and ~ / tensorflow is recommended here, so the input here is:

Virtualenv-- system-site-packages ~ / tensorflow

Activate the virtualenv environment you just created

In general (if you are using a terminal that comes with ubuntu or you are not using csh) enter: source ~ / tensorflow/bin/activate12

If the terminal you use is csh, please enter: source ~ / tensorflow/bin/activate.csh22

After entering the command, (tensorflow) appears in front of your command line, if successful.

4. Now, in this activated tensorflow environment, install the cpu version of tensorflow using the following statement

(tensorflow) $pip install-- upgrade tensorflow # if you use Python 2.7( tensorflow) $pip3 install-- upgrade tensorflow # if you use Python3.n

Installation successful!

5. Testing:

1. Open the terminal and enter cd tensorflow

2 、 source bin/activate

3 、 python

4. Enter the following example after entering python

> import tensorflow as tf > hello = tf.constant ('Hello, TensorFlowers') > sess = tf.Session () > print (sess.run (hello)) Hello, TensorFlow! > > a = tf.constant (10) > b = tf.constant (32) > print (sess.run (aforeb)) 42 >

5. If the test is successful, first exit python and press Ctrl+D.

6. Exit tensorflow and enter the command on the command line: deactivate

The above is the whole content of this article, I hope it will be helpful to your study, and I also hope that you will support it.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report