Dmitry
05/12/2022, 8:52 AMsst start
use python
from local conda
environment? It keeps referring to global /usr/local
installation, which does not have custom packages
my guess is that sst start
disregards my terminal environment and just uses an independent process that uses default values and therefore system python setup 🤔Dmitry
05/12/2022, 9:12 AMexport PATH=/your/conda/env/python:$PATH
conda
by default amends PATH variable, but in my case nvm
took precedence in the list, so system-wise python was found before the custom PATH
was able to act
yet another export PATH
helps to ensure that your PATH
is always first, although can make duplicationsFrank
Frank