-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Env var for using specific Python version #3
Comments
Good idea. Right now, we're downloading some "miniconda v3 latest" script. Any idea how we could request a version explicitly? |
Miniconda's version script differs from Python's. See https://repo.continuum.io/miniconda/. |
You can use |
Actually, I think anaconda shouldn't be in that command. Documentation is a bit weird. |
I see. I will test a bit. Shall we recognize and support Python 2 as well? |
Well, that'll make things slightly more complex I suppose, but it's a logical next step letting people use 2 for "latest python 2" |
My idea was to download the Python 2 miniconda script if the version begins with |
Sounds good yeah |
Let's first focus on the Python 3 aspects. |
Tested adding a call like
I don't know how to map "conda script version" to "works for python version". Ideas welcome. |
My idea was more based around #5. |
It'd be great to have something like CONDA_PYTHON_VERSION or so to be able to explicitly request for example 3.6 instead of 3.7. In my case, one of my dependencies doesn't build on 3.7 yet, and conda upgraded from 3.6 to 3.7, so now my build is broken with seemingly nothing I can do.
The text was updated successfully, but these errors were encountered: