Hello -
I’m trying to run rasa init within a docker container from this docs page:
https://rasa.com/docs/rasa/user-guide/running-rasa-with-docker/
Docker version 19.03.1, build 74b1e89
docker-compose version 1.24.1, build 4667896b
OSX 10.12.6
docker ps reporting Exited (132)
docker logs is completely empty.
Best guess is the container is core dumping:
Tried moving to an older (not latest) image:
run -v $(pwd):/app rasa/rasa:1.2.5 init --no-prompt
This one has an Exit (139) and shows:
F tensorflow/core/platform/cpu_feature_guard.cc:37] The TensorFlow library was compiled to use AVX instructions, but these aren’t available on your machine.
Is the rasa docker image able to work on OSX??
Carl
CarlinAustin:
AVX instructions
I think I have my answer. Older macbook (2011) does not support AVX2 instruction set which tensorflow version is compiled to use.
opened 04:24PM - 11 Apr 19 UTC
closed 08:36AM - 13 May 19 UTC
Hi,
I tried using this build tensorflow-1.12.0-cp36-cp36m-macosx_10_12_x86_64… .whl and use python 3.6.5_1 on Mac OS 10.13.6, it failed to import with :
```
(tfgpu) MacBook-Pro:tfgpu hud$ python
Python 3.6.5 (default, Jun 17 2018, 12:13:06)
[GCC 4.2.1 Compatible Apple LLVM 9.1.0 (clang-902.0.39.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow as tf
Illegal instruction: 4
```
Any idea?
Is there a way to tell rasa init to not use tensorflow?