You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, the primary reason we clone cpython from source and link to that is so we can add a small patch. However, we can emulate this patch by using pyenv and running the following command env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install --force <python version>
(credit to @d4l3k for figuring this out)
By leveraging pyenv, we should be able to dynamically link to the system version of python such that users do not have to worry about mismatching python versions.
The text was updated successfully, but these errors were encountered:
At the moment, the primary reason we clone cpython from source and link to that is so we can add a small patch. However, we can emulate this patch by using pyenv and running the following command
env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install --force <python version>
(credit to @d4l3k for figuring this out)
By leveraging pyenv, we should be able to dynamically link to the system version of python such that users do not have to worry about mismatching python versions.
The text was updated successfully, but these errors were encountered: