I am trying to port some code from 2.7 to 3.6, and I am having problems with the installing package configparser for py-3.6 in anaconda.
When I execute the following command, I get an error:
$ conda install -c anaconda configparser
UnsatisfiableError: The following specifications were found to be in conflict:
- configparser -> python[version='>=2.7,<2.8.0a0']
- python=3.6
The dependencies also gives me the same information:
conda info configparser
configparser 3.5.0 py27h5117587_0
---------------------------------
dependencies:
python >=2.7,<2.8.0a0
However, question-14087598 says the package is available in py-3.6. How should I install this package in anaconda?
(One solution in the above link suggests to install through the python program itself, but I would like to install through anaconda.)