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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南