radical-cybertools / radical.analytics

Analytics for RADICAL-Cybertools
Other
1 stars 1 forks source link

Radical analytics install fails because it's asking for Python 3.6? #91

Closed SrinivasMushnoori closed 5 years ago

SrinivasMushnoori commented 5 years ago

It looks like it's trying to install some Matplotlib version that is responsible for the error.

(rct_class)scm177@mcewan:~/RADICAL-LAB/RADICAL_DEVEL_STACK/ra$ pip install --upgrade .
Unpacking /home/scm177/RADICAL-LAB/RADICAL_DEVEL_STACK/ra
  Running setup.py (path:/tmp/pip-kN4A56-build/setup.py) egg_info for package from file:///home/scm177/RADICAL-LAB/RADICAL_DEVEL_STACK/ra
    version: 0.60.0 (v0.60.0@devel)

    warning: no files found matching 'LICENSE.md'
    warning: no files found matching '*' under directory 'radical'
Requirement already up-to-date: radical.utils in /home/scm177/VirtualEnvs/rct_class/lib/python2.7/site-packages (from radical.analytics==0.60.0)
Downloading/unpacking matplotlib (from radical.analytics==0.60.0)
  Downloading matplotlib-3.1.0.tar.gz (37.2MB): 37.2MB downloaded
  Running setup.py (path:/home/scm177/VirtualEnvs/rct_class/build/matplotlib/setup.py) egg_info for package matplotlib

    Beginning with Matplotlib 3.1, Python 3.6 or above is required.

    This may be due to an out of date pip.

    Make sure you have pip >= 9.0.1.

    Complete output from command python setup.py egg_info:

Beginning with Matplotlib 3.1, Python 3.6 or above is required.

This may be due to an out of date pip.

Make sure you have pip >= 9.0.1.

----------------------------------------
Cleaning up...
Command python setup.py egg_info failed with error code 1 in /home/scm177/VirtualEnvs/rct_class/build/matplotlib
Storing debug log for failure in /home/scm177/.pip/pip.log
SrinivasMushnoori commented 5 years ago

Doing a pip install radical.analytics gives the same problem:

(rct_class)scm177@mcewan:~/RADICAL-LAB/RADICAL_DEVEL_STACK/ra$ pip install radical.analytics
Downloading/unpacking radical.analytics
  Downloading radical.analytics-0.60.0.tar.gz (1.1MB): 1.1MB downloaded
  Running setup.py (path:/home/scm177/VirtualEnvs/rct_class/build/radical.analytics/setup.py) egg_info for package radical.analytics
    version: 0.60.0 (0.60.0)

    warning: no files found matching 'LICENSE.md'
    warning: no files found matching '*' under directory 'radical'
Requirement already satisfied (use --upgrade to upgrade): radical.utils in /home/scm177/VirtualEnvs/rct_class/lib/python2.7/site-packages (from radical.analytics)
Downloading/unpacking matplotlib (from radical.analytics)
  Downloading matplotlib-3.1.0.tar.gz (37.2MB): 37.2MB downloaded
  Running setup.py (path:/home/scm177/VirtualEnvs/rct_class/build/matplotlib/setup.py) egg_info for package matplotlib

    Beginning with Matplotlib 3.1, Python 3.6 or above is required.

    This may be due to an out of date pip.

    Make sure you have pip >= 9.0.1.

    Complete output from command python setup.py egg_info:

Beginning with Matplotlib 3.1, Python 3.6 or above is required.

This may be due to an out of date pip.

Make sure you have pip >= 9.0.1.

----------------------------------------
Cleaning up...
Command python setup.py egg_info failed with error code 1 in /home/scm177/VirtualEnvs/rct_class/build/matplotlib
Storing debug log for failure in /home/scm177/.pip/pip.log
mturilli commented 5 years ago

Right, thank you. It does indeed seem an issue with the requirements of the latest version of matplotlib. Let me fix that.

mturilli commented 5 years ago

I pushed a mini PR #92 that fixes this. Upon review and merge it should be fixed.