Hi @audiobrian1
Something is not right about your pip3 install. The error is that it cannot verify the SSL certificate of pypi. I just installed Python 3.8.3 x64, and I verified that pip &pypi are working, at least for me:
>python -VV
Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)]
>pip3 install --no-cache-dir joulescope
Collecting joulescope
Downloading https://files.pythonhosted.org/packages/4f/45/c6cffbcb66c82801a909a37bee4f5d13bc62924955c99ad89e5aea2bd11c/joulescope-0.8.14-cp38-cp38-win_amd64.whl (488kB)
|████████████████████████████████| 491kB 1.7MB/s
Collecting python-dateutil>=2.7.3 (from joulescope)
Downloading https://files.pythonhosted.org/packages/d4/70/d60450c3dd48ef87586924207ae8907090de0b306af2bce5d134d78615cb/python_dateutil-2.8.1-py2.py3-none-any.whl (227kB)
|████████████████████████████████| 235kB ...
Collecting numpy>=1.15.2 (from joulescope)
Downloading https://files.pythonhosted.org/packages/d0/1d/dcf7dec400df56c412f6e91824f21abd59e2295dfc0cf86146b61190885c/numpy-1.18.4-cp38-cp38-win_amd64.whl (12.8MB)
|████████████████████████████████| 12.8MB 6.8MB/s
Collecting pymonocypher>=0.1.3 (from joulescope)
Downloading https://files.pythonhosted.org/packages/a4/21/409fc03eb1d77694f6edc028989439d1e0a628cbde8796a6463104ce71fa/pymonocypher-3.1.0.0-cp38-cp38-win_amd64.whl (85kB)
|████████████████████████████████| 92kB 5.8MB/s
Collecting pypiwin32>=223 (from joulescope)
Downloading https://files.pythonhosted.org/packages/d0/1b/2f292bbd742e369a100c91faa0483172cd91a1a422a6692055ac920946c5/pypiwin32-223-py3-none-any.whl
Collecting psutil (from joulescope)
Downloading https://files.pythonhosted.org/packages/86/fe/9f1d1f8c1c8138d42fc0e7c06ca5004e01f38e86e61342374d8e0fa919e4/psutil-5.7.0-cp38-cp38-win_amd64.whl (235kB)
|████████████████████████████████| 245kB 6.4MB/s
Collecting six>=1.5 (from python-dateutil>=2.7.3->joulescope)
Downloading https://files.pythonhosted.org/packages/65/eb/1f97cb97bfc2390a276969c6fae16075da282f5058082d4cb10c6c5c1dba/six-1.14.0-py2.py3-none-any.whl
Collecting pywin32>=223 (from pypiwin32>=223->joulescope)
Downloading https://files.pythonhosted.org/packages/cf/06/0d55292927ada3f8516e437292d85e33d6f763dd2dcc6b95f62a91ad9740/pywin32-227-cp38-cp38-win_amd64.whl (9.1MB)
|████████████████████████████████| 9.1MB 1.7MB/s
Installing collected packages: six, python-dateutil, numpy, pymonocypher, pywin32, pypiwin32, psutil, joulescope
Successfully installed joulescope-0.8.14 numpy-1.18.4 psutil-5.7.0 pymonocypher-3.1.0.0 pypiwin32-223 python-dateutil-2.8.1 pywin32-227 six-1.14.0
WARNING: You are using pip version 19.2.3, however version 20.1.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
>python -m pip install --upgrade pip
Collecting pip
Downloading https://files.pythonhosted.org/packages/43/84/23ed6a1796480a6f1a2d38f2802901d078266bda38388954d01d3f2e821d/pip-20.1.1-py2.py3-none-any.whl (1.5MB)
|████████████████████████████████| 1.5MB 939kB/s
Installing collected packages: pip
Found existing installation: pip 19.2.3
Uninstalling pip-19.2.3:
Successfully uninstalled pip-19.2.3
Successfully installed pip-20.1.1
Are your paths correct? Try:
> where python
> python -VV
> where pip3
I get:
c:\>where python
C:\bin\Python3_8_3\python.exe
C:\Users\Matth\AppData\Local\Microsoft\WindowsApps\python.exe
c:\>python -VV
Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)]
c:\>where pip3
C:\bin\Python3_8_3\Scripts\pip3.exe
Make sure that they all match what you expect.
A google search turns up some recommendations. Are you behind a corporate firewall that blocks connections? I normally would not recommend disabling SSL verification, but you can do that…