1

I just started learning python and while I tried to follow several examples, I installed different versions of python in my mac. I found out there are already python in my mac later, and I did not consider it seriously.

Anyway, I tried to do something with idle, or python 3.5, and it does not have bumpy module. I then tried to install the module so I opened a terminal and "pip install bumpy:" it says it already has that in python2.7

Are there ways that I can do pip install thing in terminal into python3.5?

Thanks a lot.

Sincerely, Jaeho

Jaeho Jung
  • 93
  • 1
  • 1
  • 6

1 Answers1

0

Try using pip for 3.5:

pip3.5 install bumpy
Garrett
  • 1
  • 1