How to have egg files from github install with pip not in current directory but in the conda env directory?
问题 I am creating a python env using conda, pip and yml config file by using first: conda env create -f test.yml -n test_pip then conda env update -f test.yml -n test_pip with the following .yml file (for test only): channels: - defaults - conda-forge dependencies: - python=3.5 - numpy - scipy - scikit-learn - jupyter - ipykernel - requests - pandas - seaborn - click - openpyxl - matplotlib - pip: - watermark - "-e git+https://github.com/slundberg/shap#egg=shap" - pytest - sklearn - autopep8 It