pandas requires version '0.7.4' or newer of 'fsspec' (version '0.6.2' currently installed)

0

I develope program via Glue Jupyter Notebook. AWS Glue only support fsspec 0.6.2 version. However I have "pandas requires version '0.7.4' or newer of 'fsspec' (version '0.6.2' currently installed)" version issue. How to update fsspec in GLUE JUPYTER NOTEBOOK

질문됨 2년 전362회 조회
1개 답변
0

If you are running the Jupyter Notebook using interactive sessions of AWS Glue, then you can easily upgrade the version of any package by using the %additional_python_modules magic command before starting your session.

Now in your case, if you require 0.7.4 version of fsspec, then try running this command:

%additional_python_modules fsspec==0.7.4

Please note that you have to run this command before creating the spark session such that this particular package of the required version will be used while creating the session.

profile pictureAWS
지원 엔지니어
Chaitu
답변함 2년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠