Skip to content

Commit d24483c

Browse files
committed
Install new tensorflow
1 parent 5259652 commit d24483c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/aiscm.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
3434
apt-get install -q -y protobuf-c-compiler libprotobuf-c-dev
3535
apt-get install -q -y cmake
3636
apt-get install -q -y wget
37+
- name: Install libtensorflow-cpu-linux
38+
run: |
39+
wget https://storage.googleapis.com/tensorflow/versions/2.18.0/libtensorflow-cpu-linux-x86_64.tar.gz
40+
tar xz -C /usr/local -f libtensorflow-cpu-linux-x86_64.tar.gz
3741
- name: autoreconf
3842
run: ./autogen.sh
3943
- name: configure

doc/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ cd ..
4545
The Tensorflow C library (install the GPU version instead if you have a GPU):
4646

4747
```
48-
wget -q https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-1.14.0.tar.gz
49-
sudo tar xz -C /usr/local -f libtensorflow-cpu-linux-x86_64-1.14.0.tar.gz
48+
wget -q https://storage.googleapis.com/tensorflow/versions/2.18.0/libtensorflow-cpu-linux-x86_64.tar.gz
49+
sudo tar xz -C /usr/local -f libtensorflow-cpu-linux-x86_64.tar.gz
5050
```
5151

5252
### Build AIscm

0 commit comments

Comments
 (0)