'Conda environment with custom python configuration settings

When installing python from source we get the luxury of configuring with options before installing, e.g.

./configure --enabled-shared # other options go here
make altinstall # etc

where other options are found at https://docs.python.org/3/using/configure.html

When creating a conda environment, however, we just do

conda create -n myenv python

Where do we add configuration settings when building python from conda?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source