Daniel Bell

Results 14 comments of Daniel Bell

Does `master` work with Python 3?

After following this [Solution][1], uninstall and re-install. I now have this error: ``` me@PF2DCSXD:/mnt/c/Users/me/Documents/GitHub/workers-python/workers/data_simulator/src$ python3 scrape_tables.py Traceback (most recent call last): File "scrape_tables.py", line 14, in pdf_esg_scraped = p.map(scrape_tables, PDF_LIST)...

**Attempted Solution:** I got `Ghostscript` filepath output in Jupyter Notebook. ``` import ctypes from ctypes.util import find_library find_library("".join(("gsdll", str(ctypes.sizeof(ctypes.c_voidp) * 8), ".dll"))) >>> 'C:\\Users\\me\\Anaconda3\\Library\\bin\\gsdll64.dll' ``` Bash: - `PATH=$PATH:C:\Users\me\Anaconda3\Library\bin\gsdll64.dll` - `PATH=$PATH:C:\\Users\\me\\Anaconda3\\Library\\bin\\gsdll64.dll`...

`pip install camelot-py`: ``` Traceback (most recent call last): File "scrape_tables.py", line 25, in import camelot ModuleNotFoundError: No module named 'camelot' ``` `pip install camelot`: ``` danielbellhv@PF2DCSXD:/mnt/c/Users/dabell/Documents/GitHub/workers-python/workers/data_simulator/src$ pip install camelot...

I, too, am getting a [similar bug](https://github.com/microsoft/onnxruntime/issues/10342#issue-1109309874). Does `DecodeError` appear on `onnx.load()`? Your `onnx` model file may be corrupted.

I have both a MySQL and PostgreSQL data sources, with many databases in them

`poetry lock` works. Yet, when running my project it crashes still ;( ``` me@PF2DCSXD:/mnt/c/Users/me/Documents/GitHub/workers-python-framework/workers_manager$ poetry lock Updating dependencies Resolving dependencies... (1243.9s) Writing lock file me@PF2DCSXD:/mnt/c/Users/me/Documents/GitHub/workers-python-framework/workers_manager$ pip install copier Defaulting to...

Oh, strange ok. I ran `poetry install`, and got an endless list of it installing the same things over and over in different orders: ``` • Installing bokeh (2.4.2) •...

I recloned my repo, `pip install ...` a few libs. I know you said they wouldn't he;p, but I still ran `poetry add ...` for each, then did `poetry install`....

Copier is in `poetry.lock`. `cat poetry.lock`: ``` ... copier = [ {file = "copier-5.1.0-py3-none-any.whl", hash = "sha256:6eab4ee1fe898a6946e88f1fbc60d9f6a66fde96e13e17b8325ff8e9658787d6"}, {file = "copier-5.1.0.tar.gz", hash = "sha256:4afec02c6fa3efcac73e89307a1fddce1b71bf43f2df2adc338b97b89949a59b"}, ] ... ```