Trying to run an example of a python arcade library game.
Paste the code to Pycharm: the line 'import arcade' fails because 'The Arcade Library requires Python 3.6 or higher.' . Try again with python3.7 interpreter, now it says 'No module named arcade' but Pycharm proposes to install the package. After input my sudo password, it says that the
'pip install arcade'
failed and to "make sure that you use the correct version of 'pip' installed for your Python interpreter located at '/usr/local/bin/python3.7'"
I open Terminal, try:
sudo pip3.7 install arcade
Installation fails because:
Could not fetch URL https://pypi.org/simple/arcade/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/arcade/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
Could not find a version that satisfies the requirement arcade (from versions: )
No matching distribution found for arcade
You are using pip version 10.0.1, however version 18.1 is available. You should consider upgrading via the 'pip install --upgrade pip' command.
Lookup how to upgrade pip, find this thread, try every answer, none of them work because of the same reason: SSL module not available.
I also have to go back to the 3.4 interpreter in PyCharm because numpy cannot be used either. Am I stuck with my current version of python (3.4.3)? What do I have to do to install the latest modules?
OS is Linux Mint 17.3 In Terminal, default is 2.7.6 when typing 'python -V' and 3.4.3 when typing 'python3 -V', so need to specify 'python3.7'. Same goes with pip? (write pip3.7 instest of just pip or pip3?)