-
Is there any way to use pyenv (or some other tool) to fetch precompiled python binaries for specific versions? I'm trying to replace conda in my workflow, and the compile time of pyenv is currently a limiting factor in how fast I can setup a machine. Having the option to simply point at a server where the appropriate binaries (instead of the source tarballs) could be downloaded from would be enough. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
Your proposition is very good and actual for many people. But, for example, python has no compiled packages for linux, |
Beta Was this translation helpful? Give feedback.
-
Travis CI actually precompiles Python versions with Pyenv, then A precompiled binary is going to be distro-specific, so you'll better look for distro-specific resources -- e.g. https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa for Ubuntu. |
Beta Was this translation helpful? Give feedback.
-
Related: #2334 |
Beta Was this translation helpful? Give feedback.
-
Use
export CONDA_ENVS_PATH="${PYENV_ROOT_:-$HOME/.pyenv}/versions:${CONDA_ENVS_PATH_:-${HOME}/.conda/envs}"
conda create -n 3.12.3 python==3.12.3
|
Beta Was this translation helpful? Give feedback.
Related:
#2334
https://github.com/orgs/pyenv/discussions/2900#discussion-6193363