Exception: FormulaUnknownPythonError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- FormulaUnknownPythonError
- Defined in:
- exceptions.rb
Overview
Raise when the Python version cannot be detected automatically.
Instance Method Summary collapse
-
#initialize(formula) ⇒ FormulaUnknownPythonError
constructor
A new instance of FormulaUnknownPythonError.
Constructor Details
#initialize(formula) ⇒ FormulaUnknownPythonError
Returns a new instance of FormulaUnknownPythonError.
443 444 445 446 447 448 449 450 451 |
# File 'exceptions.rb', line 443 def initialize(formula) super <<~EOS The version of Python to use with the virtualenv in the `#{formula.full_name}` formula cannot be guessed automatically because a recognised Python dependency could not be found. If you are using a non-standard Python dependency, please add `:using => "python@x.y"` to 'virtualenv_install_with_resources' to resolve the issue manually. EOS end |