Updating Anaconda and Tensorflow breaks the execute Python extension.

User: "hughesfleming68"
New Altair Community Member
Updated by Jocelyn
Just updated my Tensorflow env which was working fine in Rapidminer before I did my conda update tensorflow 20 minutes ago. I am surprised that updating Anaconda would do this.

I am running in to problems everyday with 9.2.


Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "rfuentealba"
    New Altair Community Member
    Accepted Answer
    Hi @hughesfleming68,

    I'm running on 3.7.2 without problems.

    When you install a new Python distribution with conda update, you create a bare one as if you would have installed Miniconda. The problem isn't solved by downgrading but by installing Pandas on the new version after upgrading.

    What I normally do:
    • Install Anaconda.
    • Create an environment solely for RapidMiner:
      $ conda create --name=rapidminer python=3.7 
    • Activate the environment for RapidMiner:
      $ conda activate rapidminer
    • Install pandas for the new environment:
      $ conda install pandas
    • List the environments I have:
      $ conda env list
    • Copy the path of the environment I created, add /bin/python to the end and use that path to configure the Python extension.
    • Deactivate the environment:
      $ conda deactivate
    That way, nothing of what I do with other environments affect the one I use for RapidMiner.

    Hope this helps,

    Rodrigo.