Closed omsai closed 7 years ago
It turns out conda supports other python versions. One can create a environment with an older python 3.4 as follows:
conda create -n py34 python=3.4 anaconda
source activate py34
conda install -c conda-forge ggplot
Will update the configuration problems and solutions page
It looks like ggplot is only compatible with python 3.4 and not 3.6?
On March 30, 2017, a user reported installing the Python ggplot package fails to install using conda-forge. Below was their report:
Sandeep Namburi confirmed this is the case for both macOS and GNU/Linux and suspects it may also impact Windows.
As a workaround for getting attendees setup for the workshop, in some cases one use
pip
instead:pip
is provided by anaconda, but the user would need to have chosen add to anaconda to theirPATH
.However in other cases, it
ggplot
complains of missing PyQt4.I don't use anaconda and use my distro + pip packages instead, so I played with it in a VM:
However in the VM, testing the ggplot library using
python -m ggplot
fails to detect the installed PyQt4:Looking at
~/anaconda3/lib
it seems to use Qt5 instead of Qt4.This fault persists using the git version per the official python ggplot installation instructions on pypi: https://pypi.python.org/pypi/ggplot
Also I'm not 100% sure how we report problems upstream to the anaconda folks. I've seen their developers respond on the software-carpentry discuss mailing list, so for lack of my understanding the proper process I'm going to report the issue there and link back here.
Edit: mailing list report: http://lists.software-carpentry.org/pipermail/discuss/2017-March/005165.html