Cannot create Python extension following the tutorial

I found the issue. When setting the path of the extension I put in the wrong path. The path I put in was the path that contains the files config, data, docs, and scripts. Instead, I should put the parent path. Let the file tree be

User_Extensions
- New Extension
  - config
  - data
  - docs
  - scripts

I should put the path of /path/to/User_Extensions within the Extension Search Paths. However, I mistakenly put down the path /path/to/User_Extensions/New Extension which gave me the error above.

1 Like