Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #197584

Re: Conda create with python version fails me

Path csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail
From ram@zedat.fu-berlin.de (Stefan Ram)
Newsgroups comp.lang.python
Subject Re: Conda create with python version fails me
Date 14 Nov 2025 16:31:54 GMT
Organization Stefan Ram
Lines 38
Expires 1 Jun 2026 11:59:58 GMT
Message-ID <conda-20251114173013@ram.dialup.fu-berlin.de> (permalink)
References <mnlq39Fn8m1U1@mid.individual.net> <87zf8qdxm5.fsf@zedat.fu-berlin.de> <mnp17dF96k7U1@mid.individual.net>
Mime-Version 1.0
Content-Type text/plain; charset=UTF-8
Content-Transfer-Encoding 8bit
X-Trace news.uni-berlin.de Vx4DvUeC9tLnqCMStGlo5g6tkGKSlKMSlMzZsQyej1KSv1
Cancel-Lock sha1:HgTiRbTApXioH0fDX9yKQURqI7s= sha256:JSpu7MEEKe2Ft+JErqcCdc4H4pB1mF2Uft2PtrB0G58=
X-Copyright (C) Copyright 2025 Stefan Ram. All rights reserved. Distribution through any means other than regular usenet channels is forbidden. It is forbidden to publish this article in the Web, to change URIs of this article into links, and to transfer the body without this notice, but quotations of parts in other Usenet posts are allowed.
X-No-Archive Yes
Archive no
X-No-Archive-Readme "X-No-Archive" is set, because this prevents some services to mirror the article in the web. But the article may be kept on a Usenet archive server with only NNTP access.
X-No-Html yes
Content-Language en
Xref csiph.com comp.lang.python:197584

Show key headers only | View raw


Martin =?UTF-8?Q?Sch=C3=B6=C3=B6n?= <martin.schoon@gmail.com> wrote or quoted:
>If I try to specify a python version I don't get a new environment. The
>error message I get is:
>"The following packages are missing from the target environment:
>   - python=3.10"
> (if I asked for version 3.10)

  I'm not educated in Conda. But here are some wild and untested
  guesses what could be done:

conda search python

  This might list the Python versions available.

  If the desired version does not appear, adding a channel known
  to host older versions might help, like:

conda create -n test python=3.10 -c conda-forge

   . It might help to update Conda:

conda update conda

  . This should clear the Conda cache, but I don't know what you might
  lose by doing it:

conda clean --all

  . Check out your conda base and user PATH variables, and prioritize
  Conda environments over system-wide Python installations. 

  Check your system's networking/firewall configuration doesn't block
  Conda's access to remote repositories.

  You could also try to require a more specific version you have,
  like for example, "python=3.10.4", instead of, "python=3.10".

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Conda create with python version fails me Martin Schöön <martin.schoon@gmail.com> - 2025-11-13 10:26 +0000
  Re: Conda create with python version fails me "Loris Bennett" <loris.bennett@fu-berlin.de> - 2025-11-13 11:40 +0100
    Re: Conda create with python version fails me Martin Schöön <martin.schoon@gmail.com> - 2025-11-14 15:46 +0000
      Re: Conda create with python version fails me ram@zedat.fu-berlin.de (Stefan Ram) - 2025-11-14 16:31 +0000
        Re: Conda create with python version fails me Martin Schöön <martin.schoon@gmail.com> - 2025-11-17 22:14 +0000

csiph-web