0

I'm trying to use iperf3 on python3, so first I installed the iperf3 package on my Debian Linux VM, after that I could verify that all worked fine on Python 2.7.

However, when tried to import the iperf3 module using Python 3.5 (in the same VM) I got the following message:

File"<stdin>", line 1, in<module>
ImportError: No module named 'iperf3'

I tried to add the location of the iperf directory using the sys.path.append() command, but still no luck.

Any idea on what I'm missing here?

Thank you.

E LaRoche
  • 1,106
  • 1
  • 7
  • 8
olg32
  • 305
  • 2
  • 6
  • 19

1 Answers1

0

I was missing the iperf3 python wrapper. After installing it via pip3 all worked fine.

olg32
  • 305
  • 2
  • 6
  • 19