HDFGroup / hsds

Cloud-native, service based access to HDF data
https://www.hdfgroup.org/solutions/hdf-kita/
Apache License 2.0
126 stars 52 forks source link

Cannot run ./build.sh file #256

Closed annacheyette closed 10 months ago

annacheyette commented 10 months ago

I am trying to install hsds using the ./build.sh file. After cloning the repository and navigating into the hsds folder (cd hsds), I've run ./build.sh, which results in:

running pyflakes on hsds
pyflakes errors in hsds...
./pyflakes.sh: line 26: pyflakes: command not found
./pyflakes.sh: line 26: pyflakes: command not found
./pyflakes.sh: line 26: pyflakes: command not found
./pyflakes.sh: line 26: pyflakes: command not found
jreadey commented 10 months ago

You'll need to do a pip install pyflakes before running ./build.sh. PyFlakes is a Python linter - there's no reason for people who aren't modifying the code to run it. Probably best if I make this optional in the build script.

jreadey commented 10 months ago

I've updated the quick start section of the README to use: ./build.sh --nolint. This will avoid needing to install pyflakes.