Python Integration Anaconda Python 3.7 Windows 32-Bit

Hi @Tobl,

if you use a start script to activate the environment (as stated in the Python installation guide), Python 3.7 should just work fine.

If you go to the Python Preference page, are there any errors displayed for Python 3?

This problem results from a change in the pandas package from 0.23 to 0.24. I assume that you have 0.24 installed? If so, uninstalling and installing pandas 0.23 should fig the issue. To do so run the commands:

  1. activate your environment with activate <environment_name>
  2. conda uninstall pandas
  3. conda install pandas=0.23
1 Like