DeepLearningPython icon indicating copy to clipboard operation
DeepLearningPython copied to clipboard

Python ver

Open giovannip7 opened this issue 1 year ago • 3 comments

Which python version is currently supported? Does the related pkg requirements need some change too?

giovannip7 avatar May 22 '23 17:05 giovannip7

I believe the python version is 3.5.2. The repo appears to use the NumPY and Theano python modules. These are not included in the default version of PIP.

To install them run the commands: pip install numpy pip install theano

Thanks

MX-boop avatar May 24 '23 13:05 MX-boop

Sure, but which specific versions do we need from numpy and theano? E.g. numpy 1.23.5 is supported only for python 3.8 or greater (or sth similar, but for sure not for 3.5.2)

giovannip7 avatar May 24 '23 13:05 giovannip7

You could try installing the highest available version for the librarys and then running the test.py file, then tweaking the libary versions till it works. Unfortunately python 3.5.2 has reached end-of-life support for pip, this might make installing the appropriate library versions a bit challenging. If this comes up, you could try to run the code using a newer version of python that still support the latest version of pip.

Have a great day :)

MX-boop avatar Jun 15 '23 22:06 MX-boop