Does pyenv support "--enable-optimizations"? #1998
Answered
by
joshfriend
swamper123
asked this question in
Q&A
-
Hello together, for an application I use, I want to install a python version with "--enable-optimizations". On foot, when you compile python from source files, you are able to execute this in the installation stept:
Is there a way to tell pyenv to install such a version or do I have to muddle something on my own in that case? |
Beta Was this translation helpful? Give feedback.
Answered by
joshfriend
Jul 2, 2021
Replies: 1 comment
-
This is documented in the readme here Use the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
swamper123
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is documented in the readme here
Use the
CONFIGURE_OPTS
variable, e.g.CONFIGURE_OPTS="--enable-optimizations" pyenv install ...