thomasstenersen / pyrtt-viewer

A simple RTT client using Python 3 and pynrfjprog
MIT License
21 stars 5 forks source link

pip install pyrtt-viewer fails #4

Closed spachner closed 6 years ago

spachner commented 6 years ago

Hi,

thanks for providings the rtt viewer, unfortunately installation fails

[ spachner@MacBookPro ] ~
$ pip search pyrtt
pyrtt-viewer (0.1.1)  - A simple script for RTT I/O
[ spachner@MacBookPro ] ~
$ pip install pyrtt-viewer
Collecting pyrtt-viewer
  Could not find a version that satisfies the requirement pyrtt-viewer (from versions: )
No matching distribution found for pyrtt-viewer

Any hints? regards

spachner

thomasstenersen commented 6 years ago

Hi @spachner ,

I think this is related to your python version. Do pip --version to see what python version corresponds to your pip install. Note that pyrtt-viewer is only supported on Python 3.

-Thomas

spachner commented 6 years ago

Hi,

thanks for your reply. Your are right, I tried pip from version 2. pip3 worked.

regards

spachner

thomasstenersen commented 6 years ago

Glad to hear it's working :) Btw, I would recommend using virtualenv to have clean separations between python installs and projects.

-Thomas