November 18, 2021 at 5:51 pm
#78

Keymaster
Attached is a solution you could try but I was getting an error that looks like this:
$ python csv2csv.py csv_2_seperateCSVs.csv Traceback (most recent call last): File "csv2csv.py", line 1, in import pandas as pd ImportError: No module named pandas
You’ll get the error above unless you have the required python modules.
I wasn’t able to install using pip because we have a proxy and it blocks all traffic towards any of the pypi.org sites so I had to install the python modules locally.
I used a command like this to install one of the modules
python module install: sudo pip3 install pytz --no-index --find-links file:///home/guru/.config/pip/pytz-2020.1.tar.gz -vvv
Now the requirement to also output one master csv in addition to the individual csv’s