General
Q: PyCharm cannot find my files when I import them, also unit-test do not execute.
- Solution: Set the correct directory as
Source
to tell PyCharm where to import from (see here).
- Solution: Set the correct directory as
Q: When running the Deploy-Script I receive an
AttributeError: 'list' object has no attribute 'read'
and it crashes.- Solution: Check if there is a second version of
subprocess
installed and remove it.
- Solution: Check if there is a second version of
pip list
...
...
# Search for "subprocess.run" in output and remove it if found
pip uninstall subprocess.run