I am trying to upgrade from python 3.4 to 3.6 and to reinstall all the packages from my 3.4 version into the 3.6 version automatically.
Now apparently it is not possible to upgrade in place for a major version, so i resorted to create a new conda env with conda create -name python36 python=3.6
. i also tried to upgrade it place but it failed.
Before that I created a list of the module in my 34 version by type conda --list > packages.txt
I tried to install both pandas and the packages using conda create -name python36 python=3.6 --file packages.txt
but i receive an error message could not parse 'anaconda-client 1.6.0 py34_0' in: python3_packages.txt
. I tried to create the env, then to install the packages but same pb.
Any idea what is wrong here? I saw the other questions about that on SO but they dont touch of the topic of the installing of packages from text files.