如何在Windows,Linux和Mac中檢查Python版本

This post is all about how to check Python version on your computer. But before getting started, let’s know a bit about Python.

這篇文章全部關於如何在您的計算機上檢查Python版本。 但是在開始之前,讓我們對Python有一點了解。

Python is one of the most popular programming languages. And due to its awesome developer community, you can easily see a lot of different versions getting released quite frequently.

Python是最流行的編程語言之一。 而且由於其強大的開​​發人員社區,您可以輕鬆地看到很多不同的版本被頻繁發佈。

There are two most popular versions of Python as of now, one is Python 2.7.x and the other is Python 3.8.x.

到目前爲止,有兩個最受歡迎的Python版本,一個是Python 2.7.x ,另一個是Python3.8.x

Sometimes you have to work with python library that only supports Python 2.7 and sometimes we have to work with Python 3.x version but we have Python 2.7 installed and we may find our library not supporting the installed version of python.

有時您必須使用僅支持Python 2.7的python庫,有時我們必須使用Python 3.x版本,但我們安裝了Python 2.7,並且我們可能會發現我們的庫不支持已安裝的python版本。

In that case, it’s best to check the version of Python installed before downloading the required library.

在這種情況下,最好在下載所需的庫之前檢查安裝的Python版本。

In this tutorial, we will see how to check the python version on Windows, Linux and macOS just with the help of terminal.

在本教程中,我們將看到僅在終端的幫助下如何在Windows,Linux和macOS上檢查python版本。

Now, before getting started, you should be able to access your command-line of your OS.

現在,在開始之前,您應該能夠訪問操作系統的命令行。

Note: This post is all about checking the version of python installed on your computer and in case of windows, most of the time, a windows installation do not have python pre-installed.

注意 :這篇文章全是關於檢查計算機上安裝的python版本的,對於Windows,大多數情況下,Windows安裝中沒有預安裝python。

如何在Windows中檢查Python版本 (How to Check Python Version in Windows)

To see the Python version on a Windows computer, open Powershell and type:

要在Windows計算機上查看Python版本,請打開Powershell並輸入:

1
python --version
1
python -- version

Now, this is going to give you the version number of python installed on your computer.

現在,這將爲您提供安裝在計算機上的python的版本號。

1
C:\Users\Pratik>python --version
1
C : \ Users \ Pratik > python -- version

Output:

輸出:

1
Python 3.8.4
1
Python 3 . 8 . 4
How to check python version

如何在Linux中檢查Python版本 (How to Check Python Version in Linux)

Similarly, you can check the python version on Linux with the same command. Just open the terminal and type the following command.

同樣,您可以使用相同的命令在Linux上檢查python版本。 只需打開終端並輸入以下命令。

1
python --version
1
python -- version

Output:

輸出:

1
Python 3.6.7
1
Python 3.6.7
checking python version on linux

如何在Mac OS X中檢查Python版本 (How to Check Python Version in Mac OS X)

Open your terminal and type the following command:

打開終端並輸入以下命令:

1
python --version
1
python -- version

Output:

輸出:

1
Python 3.6.7
1
Python 3 . 6 . 7

Sometimes you have both the versions of python installed. In that case, to check the version of a particular version of Python then you have to type:

有時您同時安裝了兩個版本的python。 在這種情況下,要檢查特定版本的Python的版本,則必須輸入:

1
python --version #for python2
1
python -- version #for python2
1
python3 --version #for python3
1
python3 -- version #for python3

If you have found this post helpful, please share it with your friends or colleagues who are looking for some python programming.

如果您發現這篇文章有幫助,請與正在尋找python編程的朋友或同事分享。

And if you have started with Python development and stuck in some kind of problem or bug, you can leave your comment here and we will get back to you soon🤓.

而且,如果您開始使用Python開發並且遇到某種問題或錯誤,可以在這裏留下您的評論,我們會盡快與您聯繫🤓。

Thanks for your visit and if you are new here, consider subscribing to our newsletter. See you in my next post. Bye! Take Care!

感謝您的訪問,如果您是這裏的新手,請考慮訂閱我們的時事通訊。 在下一篇文章中見。 再見! 照顧自己!

翻譯自: https://www.thecrazyprogrammer.com/2020/07/how-to-check-python-version.html