martin-gorner / tensorflow-mnist-tutorial

Sample code for "Tensorflow and deep learning, without a PhD" presentation and code lab.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Doesn't work with latest pandas 0.20.1 and 0.20.2

arliber opened this issue · comments

Failed with the error:

'pandas' has no attribute 'computation'

Had to downgrade to pandas 0.20.0 like that:

pip install 'pandas==0.20.' --force-reinstall

Hope that helps someone

Bro you solved my problem. I can't thank you enough. I hope you excel in your career.

I will elaborate on my problem to help anyone else:

If you are receiving this kind of error:

image

copy and paste the below line of code in your CMD:

pip install pandas==0.20. --force-reinstall

I also had to upgrade my numpy to 1.13.0 using

pip install --upgrade numpy

I am not sure about this line of code so plz search it in google to get the right syntex.

I am using python3

It sucks that upgrading libs causes these kinds of error.

Closing since this sample does not use pandas in any way.