Command not found #16
-
Describe the bug To Reproduce
Expected behavior I checked the bin folder of my conda environment ( Desktop (please complete the following information):
|
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 1 reply
-
There is no conda in the instructions .... |
Beta Was this translation helpful? Give feedback.
-
It says "from a virtual environment", which is right, but I really use pyenv and pyenv-virtualenv over conda. I'll try with conda. We use hatchling as our build system, maybe conda doesn't support it? |
Beta Was this translation helpful? Give feedback.
-
It works here, I suspect your conda is not setup correctly. Check |
Beta Was this translation helpful? Give feedback.
-
Moving to "Discussion" as it's really a problem with your environment, not a bug in the software |
Beta Was this translation helpful? Give feedback.
-
I found the cause and it has nothing to do with conda. It's because @raffaem I would suggest installing the executable somewhere on PATH or adding the instruction of adding For example, when I install ffsubsync with |
Beta Was this translation helpful? Give feedback.
I found the cause and it has nothing to do with conda. It's because
~/.local/bin
is not on PATH. By default, it's not on PATH at least on mac. I saw two people having the same problem on Windows.@raffaem I would suggest installing the executable somewhere on PATH or adding the instruction of adding
~/.local/bin
to PATH.For example, when I install ffsubsync with
pip install ffsubsync
when using homebrew and conda, it installs the executable at/opt/homebrew/Caskroom/miniconda/base/envs/my_env_name/bin
, which doesn't require me to figure out the PATH issue and is a smoother experience.