Post
Topic
Board Bitcoin Technical Support
Re: Found multiple old wallets - how to open?
by
jackg
on 14/09/2018, 16:13:47 UTC
I don’t think python 2.7 comes with pip. And you can’t install twisted for newer versions of python Sad idk what to do then?

Pip is by default included since python 2.7.9+.
On earlier versions you have to install it with apt-get install python-pip in linux and through running get-pip.py on windows.

Regarding your problem installing pip:
You also need OpenSSL installed on your system. Download and install it and check the OpenSSL version used by python via:
Code:
import ssl
print(ssl.OPENSSL_VERSION)

inside the python interpreter. What is the output ?

It's probably easier just to update python?