In this post I show how to fix read_csv() got an unexpected keyword argument ‘columns’ error you can face using Pandas.
Ways to resolve an error
This error message occurs when you are using an outdated version of pandas that does not have the columns argument for the read_csv method.
To resolve this issue, you should upgrade to the latest version of pandas. You can do this by running the following command in your terminal or command prompt:
pip install pandas --upgrade
After upgrading, you can try using the read_csv method again and see if the error message still appears. If the error message persists, it may be due to other issues with your environment or code, and you may need to seek additional help.
See also:
How to update Pandas