Intelligent system week 3 progress

1 Dec – 8 Dec

After getting a code for reference our group run into some problems regarding the tensorflow installation. Some of the problems are we are unable to install tensorflow on Python 3 3.7 environment. After trying to find some solution from the environment some sites suggest to use python 3.6 or use anaconda virtual environment, and our team decided to try the anaconda virtual environment. However, after the anaconda environment installation another problem regarding the Tensorflow version dependencies aries. It turns out that the version installed in anaconda is higher than the one used by the code. Hence, we decided to downgrade the version of the Tensorflow using the following command in the conda prompt:

  1. conda create -n tensorflow_env python=3.6
  2. activate tensorflow_env
  3. Pip install tensorflow==1.12
  4. Pip install opencv-python
  5. Pip install editdistance
  6. Pip install matplotlib

Leave a Reply

Your email address will not be published. Required fields are marked *