Hello everyone! I posted this question on Discord ...
# questions
a
Hello everyone! I posted this question on Discord a few days ago, but I still can’t figure it out. I’m trying the started Iris project, reading the raw .csv files from S3, but I’m having issues with versions (kedro, boto3, s3fs) using Virtualenv.
1
Copy code
Python==3.8.5
kedro==0.18.3
I change de catalgo.yml and set my aws credentials
Copy code
example_iris_data:
  type: pandas.CSVDataSet
  filepath: <s3://my_bucket/iris.csv>
  credentials: dev_s3
Sometimes I get the message “Install s3fs to access S3” when that library is already installed, and other times “No node was executed. Please repeat the above command to try a new execution”. Do you know if there are any specific dependencies between libraries?
d
What's the result of
which kedro
(if you're on a UNIX machine)?
a
Copy code
/Users/myuser/Documents/Dev/code/python/kedro_batch/venv/bin/kedro
Any clue?
d
And if you do
which pip
and
pip freeze
?
Is it normal to have (venv) (base)? I could be wrong, but do you perhaps have conda and venv?
And maybe something is installed in (base)?
a
Thanks @Deepyaman Datta! There was a mess with the virtual environments on this computer. Thanks a lot!
🎉 1