So many options for Tensorflow.... |
Tensorflow is a powerful deep learning suite that is now widely used in the development and application of various deep learning.
Although there are many users, if there are special projects that must install tensorflow on different versions / operating systems / programming languages / platforms, it is often necessary to find answers in the sea of google, and must continue to test after found.
Build form Source can basically solve most of the problems, but because it takes a lot of time and is difficult, it causes some people to have some difficulties in installation.
Here are a few of the tensorflow installation methods tested by myself.
Case1: x86 | Python api | Windows & macOS & ubuntu
>> You can just easily follow tensorflow official tutorial:
= = =
Case2: x86 | C api | Windows & macOS & ubuntu
Step1. Download File by Platform:
>> Linux - CPU Only
https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-1.14.0.tar.gz
>> Linux - GPU Support
https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-gpu-linux-x86_64-1.14.0.tar.gz
>> macOS - CPU Only
>> Windows - CPU Only
>> Windows - GPU Support
Step2. Extract the File:
>> Linux & macOS
$ sudo tar -C /usr/local -xzf {File_Path}
Step3. Linker:
$ sudo ldconfig
Step4. Verify:
create a file name hello_tf.c and paste code below:
#include
#include
int main() {
printf("Hello from TensorFlow C library version %s\n", TF_Version());
return 0;
}
then compile hello_tf.c for check:
gcc hello_tf.c -ltensorflow -o hello_tf
./hello_tf
留言
張貼留言