the-full-stack / fsdl-text-recognizer-2022

Source of the FSDL 2022 labs, which are at https://github.com/full-stack-deep-learning/fsdl-text-recognizer-2022-labs
https://fullstackdeeplearning.com/course
MIT License
81 stars 26 forks source link

update setup/readme fixed bug in `export PYTHONPATH` #47

Closed FarisHijazi closed 2 years ago

FarisHijazi commented 2 years ago

changed line:

export PYTHONPATH=.:$PYTHONPATH" >> ~/.bashrc

to:

echo "export PYTHONPATH=.:$PYTHONPATH" >> ~/.bashrc

charlesfrye commented 2 years ago

thanks for catching that, @FarisHijazi!