About 72 results
Open links in new tab
  1. Which version of Python do I have installed? - Stack Overflow

    I have to run a Python script on a Windows server. How can I know which version of Python I have, and does it even really matter? I was thinking of updating to the latest version of Python.

  2. How can I check my python version in cmd? - Stack Overflow

    Jun 15, 2021 · I has downloaded python in python.org, and I wanted to check my python version, so I wrote python --version in cmd, but it said just Python, without version. Is there any other …

  3. How do I check which version of Python is running my script?

    1503 How do I check which version of the Python interpreter is running my script? See Find full path of the Python interpreter (Python executable)? if you are looking to find exactly which …

  4. In requirements.txt, what does tilde equals (~=) mean?

    Sep 20, 2016 · In the requirements.txt for a Python library I am using, one of the requirements is specified like: mock-django~=0.6.10 What does ~= mean?

  5. How do I detect the Python version at runtime? - Stack Overflow

    Aug 30, 2018 · Here, sys.version_info[0] is the major version number. sys.version_info[1] would give you the minor version number. In Python 2.7 and later, the components of …

  6. What version of Python do I have? - Ask Ubuntu

    Jul 31, 2014 · How can I find out what versions of Python I have? I am using Ubuntu 14.04 (Trusty Tahr).

  7. How can I check all the installed Python versions on Windows?

    Learn how to check all installed Python versions on Windows using command line tools and environment variables.

  8. How to create a venv with a different Python version

    Dec 20, 2021 · 102 I have different venvs in my machine in which I have Python 3.10. Now for a specific project, I realised that Python 3.10 is not suitable as some libraries are still not …

  9. How Should I Set Default Python Version In Windows?

    Feb 23, 2011 · 170 I installed Python 2.6 and Python 3.1 on Windows 7 and set environment variable: path = d:\python2.6. When I run python in cmd, it displays the python version 2.6, …

  10. Install a module using pip for specific python version

    To install the module, first locate the folder in which that version of Python is located (Open a cmd window and type where python to list all paths for python installations), copy the path to the …