0

Here is the process I've followed so far.

Create Env:

conda create -n py38 python=3.6 anaconda

Install awswrangler:

conda install -c conda-forge awswrangler

When I go into my notebook and try to import it into my notebook, I get the following error:

AttributeError: module 'multiprocessing' has no attribute 'connection'
John Rotenstein
  • 241,921
  • 22
  • 380
  • 470
Madhav Thaker
  • 360
  • 2
  • 12
  • Does this answer your question? [Error Import awswrangler: AttributeError: module 'multiprocessing' has no attribute 'connection'](https://stackoverflow.com/questions/60907299/error-import-awswrangler-attributeerror-module-multiprocessing-has-no-attrib) – octopirate Mar 15 '21 at 00:40

1 Answers1

0

Try downgrading the following dependencies:

pip install fsspec==0.6.3 PyAthena==1.10.2 s3fs==0.4.0

octopirate
  • 35
  • 1
  • 10