When trying to install pystemmusscope on crib with pip install pystemmusscope I got this error:
FileNotFoundError: [Errno 2] No such file or directory: '/usr/bin/pip'
This is because pip is install at /usr/local/bin/pip.
By adding the --user flag pip install --user pystemmusscope, this will work. It would be better if we add an extra instruction in the installation_instructions.md, for those who are not familiar with the cluster system.
When trying to install
pystemmusscope
oncrib
withpip install pystemmusscope
I got this error:This is because pip is install at
/usr/local/bin/pip
.By adding the
--user
flagpip install --user pystemmusscope
, this will work. It would be better if we add an extra instruction in theinstallation_instructions.md
, for those who are not familiar with the cluster system.https://github.com/EcoExtreML/STEMMUS_SCOPE_Processing/blob/8eb8c73f01464902a5245dfb24590837ed078df2/docs/installation_instructions.md?plain=1#L39-L43