0

I am trying to install parallel-ssh on python2.7. My use-case for using this is to make an ssh connection run in parallel and not let it block further execution of a python file. I used the following command,

pip install parallel-ssh

But, I am getting the following error,

UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 30: ordinal not in range(128)

I tried searching for ways to rectify this. I am not very clear on what to do and need some guidance regarding the same.

5
  • 2
    this is the error while installing parallel-ssh or while using it? Commented May 18, 2016 at 7:00
  • This error is while installing parallel-ssh. Commented May 18, 2016 at 9:32
  • 1
    I don't think the issue is with the parallel-ssh package. Seems to be a duplicate - stackoverflow.com/questions/25036897/…. Can you please check? Commented May 22, 2016 at 8:26
  • @SilentMonk Will check and get back. Commented May 24, 2016 at 7:16
  • @SilentMonk yes... it was a problem with pip... it installed perfectly after upgrading my pip version... thank you...:) Commented May 25, 2016 at 3:55

1 Answer 1

1

Yes, this is an issue with old versions of pip.

pip install -U pip
pip install parallel-ssh

This will update pip and then parallel-ssh installation can proceed.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.