Thanks for the info @JoeyKim --- I am going to reproduce some steps here that @jairideout outlined for detailed diagnosis of this type of problem:
-
Check if you have
gdbinstalled by simply runninggdb. If you receive an error stating "no such command", you'll need to installgdb. There's instructions here, you may need your system administrator to install it for you depending on your user permissions. -
Once you have
gdbinstalled, run:gdb -ex r --args python -c "import qiime2.sdk; qiime2.sdk.PluginManager();"This should hopefully reproduce the error you reported earlier, and then drop you into a
gdbdebugger session. -
From within the
gdbinteractive shell, run:bt -
Run the
quitcommand to exit thegdbsession.
Please send all of the output from steps 2 and 3 above (please copy and paste!).
Thanks! ![]()