flask-react icon indicating copy to clipboard operation
flask-react copied to clipboard

setup.sh line 21 should be `source $current_directory/bin/activate`

Open modle opened this issue 7 years ago • 0 comments

Since bin is at the root of the project, and line 18 of setup.sh is a cd into $current_directory/backend/, the activate sourcing fails with a path error.

To fix, change setup.sh line 21

source bin/activate

to

source $current_directory/bin/activate

modle avatar Mar 12 '18 21:03 modle