Couldn't find program: 'bash' #2091
-
Hi, I also read this issue #1697 and tried to use pybamm.parameters_cli.edit_parameter, but this still doesn't work. Here is my parameter path, maybe helpful for you. And my version is 22.5. Regards |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
The I will transfer this to a discussion for the record. |
Beta Was this translation helpful? Give feedback.
-
You can install Alternatively, you can use
would change to -
or something similar. I have pushed a notebook identical to the original one, but swapping the I am not sure if these commands should be in some way displayed to the users in the original notebook. This issue should go away once the cli functions are exposed! |
Beta Was this translation helpful? Give feedback.
You can install
git
withgit bash
(usually installed by default withgit
). This would allow your notebooks to accessbash
and run the commands using it.Alternatively, you can use
%%cmd
instead of%%bash
. Note that this would require changing thebash
commands in the notebook tocmd
commands. For instance -would change to -
or something similar.
I have pushed a notebook identical to the original one, but swapping the
bash
commands withcmd
commands on my fork here - h…