5

I'm trying to install python 3.7 env for miniconda on my raspberry pi 4 model B.

But when I'm doing conda install python 3.7

I get Error: No packages found in current Linux-armv7l channels matching: 3.7.

how can I install python 3.7 in some way on that miniconda?

justaman
  • 89
  • 1
  • 6

3 Answers3

1

You can try to create new environment with this python version:

conda create -n your_env_name python=3.7

And then you need to activate it:

activate your_env_name

Here you will find more about conda environments.

marcin
  • 517
  • 4
  • 23
  • 1
    also that doesn't work. ```Fetching package metadata: .... Error: No packages found in current linux-armv7l channels matching: python 3.7*``` – justaman Feb 18 '21 at 14:21
  • Here you might find answer for your question: https://stackoverflow.com/questions/39371772/how-to-install-anaconda-on-raspberry-pi-3-model-b/56852714#56852714 . – marcin Feb 18 '21 at 14:49
0

You might want to try with this command : conda install -c anaconda python=3.7

Tell us if this works

J-Dumas
  • 79
  • 6
  • 2
    Hey, I get ```Error: No packages found in current linux-armv7l channels matching: python 3.7*``` when I try that command. – justaman Feb 18 '21 at 13:54
  • 2
    Does it say `Could not connect` ? If so, you might have connection issues (firewall or proxy blocking the access). You could try to look at this answer: [link] (https://stackoverflow.com/questions/31876038/miniconda3-no-packages-found-in-current-win-32-channels-matching-issue). You could for example try to install Anaconda instead of Miniconda if you have enough space on your pi – J-Dumas Feb 18 '21 at 14:02
  • 1
    no, it does not say ```could not connect```. – justaman Feb 18 '21 at 14:20
0

miniconda only have under python3.4 for armv7l so you need to use python3.7 for armv7l(no anaconda or miniconda just python)

Dj_Color
  • 19
  • 2
  • 2
    As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Jul 17 '22 at 15:43