I have been trying to install camelot onto my computer to use via VS Code. I have tkinter and ghostscript installed, but I'm unable to install camelot. I accidentally ran !pip install camelot, so I'm unable to use read_pdf since it isn't the correct package.
I am using VS Code through Anaconda3 if that helps.
I've tried all of the follow, separately...
!pip install camelot-py
!pip install camelot-py[cv]
!pip install camelot-py[base]
!pip install "camelot-py[base]"
The above all result in VS Code loading forever and never finish installing anything.
I've also tried
conda install tabula-py[cv]
conda install -c conda-forge camelot-py
and it finished loading, but I get the error
Collecting package metadata (current_repodata.json): ...working... failed
Note: you may need to restart the kernel to use updated packages.
CondaSSLError: Encountered an SSL error. Most likely a certificate verification issue.
Exception: HTTPSConnectionPool(host='conda.anaconda.org', port=443): Max retries exceeded with url: /conda-forge/win-64/current_repodata.json (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')])")))
Any help would be immensely appreciated as I have been googling for hours with no resolution.
Thanks in advance...