Я установил python3 .5 в соответствии с этим в Ubuntu 18.04. Я сделал это, потому что мне нужно использовать модил (ovito), который скомпилирован только для этой спецификации c версии python.
Однако, установка, описанная в ссылке выше, дает мне python без пипса. Затем я попытался установить pip для python3 .5
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3.5 get-pip.py
, что привело к
Defaulting to user installation because normal site-packages is not writeable
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)': /simple/pip/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)': /simple/pip/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)': /simple/pip/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)': /simple/pip/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)': /simple/pip/
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)) - skipping
ERROR: Could not find a version that satisfies the requirement pip (from versions: none)
ERROR: No matching distribution found for pip
Есть ли способ использовать этот модуль ovito? Я уже пытался использовать его с python3 .6. pip3.6 может установить его, но когда я
import ovito
python жалуется
ImportError: Python version mismatch: module was compiled for version 3.5, while the interpreter is running version 3.6.
Есть идеи? Я боролся уже несколько часов ....
РЕДАКТИРОВАТЬ: Как вы думаете, анаконда может предоставить возможный маршрут?