Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove $CONDA_PREFIX/bin from PATH when testing installation on UNIX …
…/ Conda Also remove all *CONDA* environment variables, so as to match "Conda-based" environments as much as possible. A "Conda-based" environment is a Conda environment whose packages are launched outside of the environment, as e.g. when using the Khiops Python library from a JuPyter notebook which: - is installed outside the Conda environment where Khiops is installed - uses a Python kernel (via the `ipykernel` Conda package) which is installed inside the Conda envirovnment. This configuration results in two particularities: - `sys.path` is correctly set according to the Conda environment (as the Python kernel is installed therein) - `PATH` and the operating system environment (except for Python aspects) does not take this Conda environment into account: - `*CONDA*` variables are not set (most notably, `CONDA_PREFIX` is not set) - `$CONDA_PREFIX/bin` is not in the `PATH`.
- Loading branch information