About 50 results
Open links in new tab
  1. How to install the specific version of Python with Anaconda?

    Sep 15, 2019 · [1] I determined this by running conda create -n foo --dry-run -c anaconda python=3.6.5 anaconda and then examining the version of the anaconda package that Conda ended up with in the …

  2. Install a specific (ana)conda package version - Stack Overflow

    py35_0 means that you need python version 3.5 for this specific version. If you only have python3.4 and the package is only for version 3.5 you cannot install it with conda.

  3. How to install python with conda? - Stack Overflow

    Aug 2, 2020 · 110 I'm trying to install python 3.9 in a conda enviroment. I tried creating a new conda env using the following command,

  4. How do I upgrade to Python 3.6 with Conda? - Stack Overflow

    Jan 9, 2017 · Anaconda had not updated Python internally to 3.6, but later versions of Anaconda has a Python 3.6 version here. a) Method 1 If you wanted to update, you will type conda update python To …

  5. How to create conda environment with specific python version

    Jun 22, 2019 · I have miniconda3 installed and since I would like to have an environment with python version 3.3.0, I create it via conda create -n "myenv" python=3.3.0 However when I …

  6. How to change Python version of existing conda virtual environment

    I created a conda environment with Python version 3.8, but it doesn't support matplotlib... So I am looking for something like this to change the Python version: conda env my_env update to python=3.6.

  7. How can I update to the latest Python version using conda?

    Aug 27, 2018 · I am new to Python. I was asked to update to the latest Python version using conda. So far, I have installed Anaconda on my Mac. So I am mainly using the Terminal. Thank you in advance.

  8. How to change python version in Anaconda? - Stack Overflow

    Feb 6, 2019 · A better (recommended) alternative is to create a virtual environment of the desired Python version and then use that environment to run Tensorflow and other scripts. To do that, you …

  9. conda install downgrade python version - Stack Overflow

    Apr 26, 2017 · First check the current version using command python --version. Then on anaconda prompt type the command conda search python which will list all the python versions available till …

  10. python - How to list package versions available with conda - Stack …

    Apr 5, 2017 · As an addendum, you can use the output of conda search to fine-tune the version of the package you need installed. E.g. in the list from the 'nasica88', there are three albaster 0.7.7 …