You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pytao primarily targets conda users and expects to be installed alongside conda-forge dependencies (especially the underlying bmad library, which is not available on PyPI).
Some users may still prefer to install with pip and use their development/pre-built bmad.
In order to do so, they would currently have to add the missing dependencies themselves:
pytao
primarily targetsconda
users and expects to be installed alongsideconda-forge
dependencies (especially the underlyingbmad
library, which is not available on PyPI).Some users may still prefer to install with
pip
and use their development/pre-built bmad.In order to do so, they would currently have to add the missing dependencies themselves:
It's worth considering moving these dependencies from
environment.yml
topyproject.toml
, then:pip install pytao
becomes useful, even though it won't have bmadconda install -c conda-forge pytao
will still work, as the dependencies are specified in the conda-forge recipemamba env create -n pytao --file environment.yml
can install bmad from conda-forge and the remainder of the dependencies from PyPI.The text was updated successfully, but these errors were encountered: