##// END OF EJS Templates
Use environment variable to identify conda / mamba (#14515)...
Use environment variable to identify conda / mamba (#14515) Conda and mamba both set an environment variable which refers to the base environment's executable path, use that in preference to less reliable methods, but fall back on the other approaches if unable to locate the executable this way. Additionally, change the search to look for the bare command name rather than the command within the top level of the active environment, I'm dubious this approach works with any current conda / mamba version which usually place their executable links in a `condabin` directory or elsewhere not at the same level as the Python executable. I believe this will also address https://github.com/ipython/ipython/issues/14350, which I'm also seeing in a Windows context where the regex fails to parse and causes a traceback.

File last commit:

r28404:a6441287
r28871:d23bee0c merge
Show More
display.py
44 lines | 1.5 KiB | text/x-python | PythonLexer
"""Public API for display tools in IPython.
"""
# -----------------------------------------------------------------------------
# Copyright (C) 2012 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Imports
# -----------------------------------------------------------------------------
from IPython.core.display_functions import *
from IPython.core.display import (
display_pretty as display_pretty,
display_html as display_html,
display_markdown as display_markdown,
display_svg as display_svg,
display_png as display_png,
display_jpeg as display_jpeg,
display_latex as display_latex,
display_json as display_json,
display_javascript as display_javascript,
display_pdf as display_pdf,
DisplayObject as DisplayObject,
TextDisplayObject as TextDisplayObject,
Pretty as Pretty,
HTML as HTML,
Markdown as Markdown,
Math as Math,
Latex as Latex,
SVG as SVG,
ProgressBar as ProgressBar,
JSON as JSON,
GeoJSON as GeoJSON,
Javascript as Javascript,
Image as Image,
set_matplotlib_formats as set_matplotlib_formats,
set_matplotlib_close as set_matplotlib_close,
Video as Video,
)
from IPython.lib.display import *