According to Pipenv doc (https://pipenv.readthedocs.io/en/latest/advanced/#pipenv-and-other-python-distributions), one can "reuse Conda–installed Python packages, use the --site-packages flag
":
$ pipenv --python=/path/to/python --site-packages
When using the above command, the Pipfile did not get updated with the packages already installed in the conda environment specified in the --python flag
.
1) Is this the expected behaviour of the command?
2) Is there a way to populate the Pipfile automatically?