Troubleshooting

Sometimes, if you use Mac OS you can experience some problems with installing the boilerplate.

Init.sh

When you try to execute init.sh if you see the following error "init.sh: Command not found" go to the boilerplate's root folder and run ./init.sh

Then, if you see "./init.sh permission denied" run: sudo chmod 755 'init.sh'

Executable not found

When the script is running you may see the error during installation some Python packages like "Error: pg_config executable not found."

You need to fix this problem because script won't execute beyond. To fix this problem run brew install postgresql

Note. If you see any other problem with installation packages it can prevent from working script normally so you have to fix all this problems.

Psycopg

If you build and run the project but then you see the following exception: ImportError: No module named 'psycopg2._psycopg' uninstall and install the module back:

pip uninstall psycopg2

pip install psycopg2