I noticed Pymacs did not recognize packages that were installed through Anaconda.
Note: Just discovered a solution, I will enter it as an answer.
I noticed Pymacs did not recognize packages that were installed through Anaconda.
Note: Just discovered a solution, I will enter it as an answer.
Copyright © 2021 Jogjafile Inc.
After some troubleshooting realized, through
ps -eaf | grep pythonTherein lies the problem, Anaconda sort of takes over as the default interpreter on your computer, but Pymacs is still trying to use the global Python under
/usr/bin. Therefore anything installled through conda install are not visible to Pymacs.The solution is editing
PYMACS/pymacs.elfile, go to line 623, and changepymacs-python-commandto"[YOUR HOME DIR]/anaconda/bin/python"