Exception: FormulaUnknownPythonError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- FormulaUnknownPythonError
- Defined in:
- brew/Library/Homebrew/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.
382 383 384 385 386 387 388 389 390 |
# File 'brew/Library/Homebrew/exceptions.rb', line 382 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 depedency, please add `:using => "python@x.y"` to `virtualenv_install_with_resources` to resolve the issue manually. EOS end |