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
This would make it so that one could do pip install envisage[examples] and be assured that they have all the dependencies needed to run all of the examples.
This may seem like a simple issue, but because chaco is a dependency, which depends on enable things are a little muddy. In order to install enable (more specifically kiva), you need to already have numpy installed in the environment, and further you need a specific version of swig.
Thus, simply adding "examples": ["numpy", "scipy", "chaco", "mayavi"] to extras_require will not work. We will need to do a bit more.
The text was updated successfully, but these errors were encountered:
This would make it so that one could do
pip install envisage[examples]
and be assured that they have all the dependencies needed to run all of the examples.This may seem like a simple issue, but because
chaco
is a dependency, which depends onenable
things are a little muddy. In order to installenable
(more specificallykiva
), you need to already havenumpy
installed in the environment, and further you need a specific version ofswig
.Thus, simply adding
"examples": ["numpy", "scipy", "chaco", "mayavi"]
toextras_require
will not work. We will need to do a bit more.The text was updated successfully, but these errors were encountered: