I have a binary /anaconda3/bin/lex_lookup that is needed for a Python package. The directory /anaconda3/bin/ is in my path. When my conda environment is inactive, I can execute the file with no issues by just calling it. However, when I activate my environment I get zsh: command not found: lex_lookup.
Asked
Active
Viewed 47 times
0
Michael
- 1
- 2
-
If your environment is not active, that shouldn't be on your PATH - only `anaconda3/condabin` should be. Maybe see [this answer](https://stackoverflow.com/a/55526573/570918). Also, are you activating the **base** environment or a different one? From the paths you describe, it is installed in **base**. – merv Sep 15 '21 at 20:54