3

I use a mac, and I have two versions of python (2.7 and 3.5). I installed scitools using pip and import from scitools import * works with 2.7 but not 3.5. I was wondering if it's because of links or something. I have included a screenshot. Thank you!

enter image description here

EDIT:

pip3 install scitools gives:

enter image description here

Johnathan
  • 1,877
  • 4
  • 23
  • 29
  • 1
    You need to install `scitools` using `pip3` in order to use it using python3 – Moinuddin Quadri Nov 30 '16 at 00:49
  • @MoinuddinQuadri Thank you for your quick reply. I have made an edit with a screenshot. I get an error saying that there was no matching distribution for scitools – Johnathan Nov 30 '16 at 00:55

2 Answers2

2

scitools requires Python 2.7 (source: github). It's apparently not actively maintained, so don't wait around for Python 3 support.

wim
  • 338,267
  • 99
  • 616
  • 750
2

As you can read on https://github.com/hplgit/scitools , the module dependencies are Python2.7 and numpy.

Memo44
  • 21
  • 2