

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/slackclient/ Pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. I have successfully installed it using pip and pip3, but these packages doesn't correspond with python3.7, so trying pip3.7 gives me the following error: Now I am trying to install packages using 'pip' - specifically the 'slackclient' package. I now have the following outputs when checking versions:

Sudo apt-get install python3-pip # pip for Python 3Īfter installation, use pip for Python 2 and pip3 for Python 3 to use pip for installing Python packages.īut note that you might need to install many dependencies, which are required to build numpy from source (including development-packages, compilers, fortran etc).īesides installing numpy at the system level, it is also common (perhaps even highly recommended) to install numpy in virtual environments using popular Python packages such as virtualenv.I am working on an ubuntu 16.04 VM and have installed python3.7 from a package. Pip is available in the default repositories of most popular Linux distributions and can be installed for Python 2 and Python 3 using: sudo apt-get install python-pip # pip for Python 2 Pip3 install numpy # install numpy for Python 3

Numpy can also be installed with Python's package manager pip for Python 2 and with pip3 for Python 3: pip install numpy # install numpy for Python 2 In Ubuntu and Debian, install numpy at the system level using the APT package manager: sudo apt-get install python-numpyįor other distributions, use their package managers, like zypper (Suse), yum (Fedora) etc. Some Linux distributions have different NumPy packages for Python 2.x and Python 3.x. NumPy is available in the default repositories of most popular Linux distributions and can be installed in the same way that packages in a Linux distribution are usually installed.
