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:
- activate your environment with
activate <environment_name>
conda uninstall pandas
conda install pandas=0.23