Search In This Website

Menampilkan postingan yang diurutkan menurut relevansi untuk kueri version. Urutkan menurut tanggal Tampilkan semua postingan
Menampilkan postingan yang diurutkan menurut relevansi untuk kueri version. Urutkan menurut tanggal Tampilkan semua postingan

Senin, 27 Maret 2023

How To Check Your Python Version

How To Check Your Python Version In Microsoft Windows



To Check The Python Version 2

  1. open Command Prompt.
  2. type  python –-version
    or
    type python –V
    ( must be V in capital text )
  3. press Enter on keyboard.


To Check The Python Version 3

  1. open Command Prompt.
  2. type python3 --version
    or
    type python –V
    ( must be V in capital text )
  3. press Enter on keyboard.

To Check PIP Version

PIP is package management tool in Python.

  1. open Command Prompt.
  2. type :
    • python -m pip show pip

      or
    • python -m pip --version

      or
    • pip -V
      ( must be V in capital text )
      or
    • pip --version
      or
    • pip3 --version
      to check PIP on Python 3
      or
    • pip3 -V
      to check PIP on Python 3
      or
    • pip list

  3. press Enter on keyboard.

 < to learn about Open Command Prompt in step 1, click How To Launch Command Prompt

To learn about check Sqlite version, click How To Check Sqlite Version >



<< back to Study About Python


Bibilography:

Master Python by Abhishek Singh;Python from the Very Beginning by John Whitington;Python Dash: Build Data Analysis and Visualization Apps with Plotly by Adam Schroeder, et. al.;Python Phrasebook by Brad Dayley;Python 3 Standard Library by Doug Hellman;Intuitive Python: Productive Development For Projects That Last by David Muller

command line, terminal, bash shell, installation, install

Related Post:

Rabu, 21 Mei 2025

Software Programming Environment Variable

The sample list of Programming Environment Variable and Common Programming Default Path:
Notes Use quotation marks when specifying long filenames or paths with spaces.



to learn about Environment Variable, click Environment variable 1 >

to learn about Top Command Prompt Command list, click Top Command Prompt >

to learn about change a directory in Command Prompt, click Change Directory In Command Prompt >

Rabu, 01 Mei 2024

Check Version Of Windows Operating System

Check Version And Bit Version Of Windows Operating System.

Windows 10 and Current Version

  • Click the Start button, and then Select > Settings  > System  > About.
  • Under Device specifications > System type, see if you're running a 32-bit or 64-bit version of Windows.
  • Under Windows specifications, check which edition and version of Windows your device is running.

Windows 8

  • If you're using a mouse, point to the lower-right corner of the screen, move the mouse pointer up, click Settings, and then click Change PC settings.
  • Select PC and devices > PC info.
  • Under Windows you'll see which edition and version of Windows your device is running.
  • Under PC > System type you'll see if you're running a 32-bit or 64-bit version of Windows.

Windows 7

  • Click the Start button, type Computer in the search box, right-click on Computer, and then select Properties.
  • Under Windows edition, you'll see the version and edition of Windows that your device is running.
  • Under System > System type you'll see if you're running a 32-bit or 64-bit version of Windows.


to learn about Windows Folder 32 bit location and Windows Folder 64 bit path, click Windows Folder 32 Bit dan 64 Bit. >


installation, install, requirement, the architecture version of Windows, the architecture version of computer processor, update based on your need or upgrade based on your requirement

Related Post:

Sabtu, 16 Desember 2023

Windows Folder 32 Bit dan 64 Bit

Two different versions of the Program Files folder and the Windows System folder

A 64-bit Windows has two different versions of the program files folder and the Windows system folder (system directory). One version is intended for 32-bit files and other version is intended for 64-bit files. The name of these folders, and the bit they are intended for, is shown in the table below:
  
Folder name Bit Description
System32 64 Windows System folder (system directory) for 64-bit files
SysWOW64 32 Windows System folder (system directory) for 32-bit files
Program Files 64 Folder for 64-bit program files
Program Files (x86) 32 Folder for 32-bit program files
 
Below you can see the full path to the folders.
 
Folder name Folder path Description
System32 C:\Windows\System32
%windir%\System32
Windows System folder (system directory) for 64-bit files
SysWOW64 C:\Windows\SysWOW64
%windir%\SysWOW64
Windows System folder (system directory) for 32-bit files
Program Files C:\Program Files Folder for 64-bit program files
Program Files (x86) C:\Program Files (x86) Folder for 32-bit program files
Sysnative is a virtual folder, a special alias, that can be used to access the 64-bit System32 folder from a 32-bit application or script. If you for example specify this folder path in your application's source code:
 
C:\Windows\Sysnative
 
the following folder path is actually used:
 
C:\Windows\System32

To provide support for allowing existing 32-bit applications to work on 64-bit versions of Windows, most 64-bit versions of Windows use 32-bit Windows-on-Windows (WOW64) emulation. This WOW64 emulation support isolates the 32-bit and 64-bit files from each other by storing their files in separate locations.

A 64-bit target system typically has two Program Files folders:

  • Program Files, which is for 64-bit applications
  • Program Files (x86), which is for 32-bit applications

A 64-bit target system typically has two Common Files folders (one in either Program Files folder):

  • Program Files\Common Files, which is for 64-bit applications
  • Program Files (x86)\Common Files, which is for 32-bit applications

A 64-bit target system also typically has two system folders:

  • System32, which is for 64-bit libraries and executable files
  • SysWOW64, which is for 32-bit libraries and executable files

< To learn about Check Version Of Windows Operating System and Check The Bit Version Of Windows Operating System click Check Version Of Windows Operating System


the architecture version of Windows, the architecture version of computer processor, installation, install, requirement, update based on your need or upgrade based on your requirement

Bibliography:

https://www.revenera.com/
https://www.samlogic.net/
https://superuser.com/
https://support.microsoft.com/

Related Post:

Rabu, 26 Juni 2024

How To Check MySQL Version

How To Check MySQL Client Program Version Using The Command Line (Windows, Linux And MacOS)

To check MySQL client program version using the command line (Windows, Linux and MacOS), follow this steps:
  1. Open your Microsoft Windows Command Line / Microsoft Windows Command Prompt / Linux or Apple MacOS Terminal / Linux or Apple MacOS Shell / Linux or Apple MacOS Console / Linux or Apple MacOS Command Line.
    To learn how to open Microsoft Windows Command Prompt, click
    How To Launch Command Prompt
    or
    How To Launch Command Prompt In Windows 8
  2. Type this MySQL command:
    mysql -V
    or 
    mysql --version
  3. then press Enter on keyboard.

Output


The mysql -V (the uppercase V) command works on Linux, MacOS, Windows, and other supported systems. 

    How To Check MySQL Server Program Version Using The Command Line (Windows, Linux And MacOS)

    To check MySQL server program version using the command line (Windows, Linux and MacOS), follow this steps:
      1. Open your Microsoft Windows Command Line / Microsoft Windows Command Prompt / Linux or Apple MacOS Terminal / Linux or Apple MacOS Shell / Linux or Appple MacOS Console / Linux or Apple MacOS Command Line.
      2. or type this MySQL server command:
        mysqld -V
        or 
        mysqld --version
      3. then press Enter on keyboard.
      The mysqld -V (the uppercase V) command works on Linux, MacOS, Windows, and other supported systems. 

        Output


        Notes

        • Its output contains  the major version number, build date, and an optional suffix release copyright information of MySQL server program or the  major version number, build date of MySQL client program. The output may different in the different version.
        • For best practices and production purpose use the General Availability (GA) release because stable versions and are safe and reliably.

        << back to Study About PHP 1

        Bibliography

        https://www.scalahosting.com/
        https://www.devart.com/
        https://dev.mysql.com/ ( manual ebook )

        Related Post


        Selasa, 01 Oktober 2024

        How To Check Your Ruby Version

        How To Check Your Ruby Version In Microsoft Windows

        1. open Command Prompt.
        2. type  ruby -v
          or
          type ruby --version
        3. press Enter on keyboard.



        Notes: 
        • For Ruby CLI ( Command Line Interface ) documentation, type: ruby --help
        • The Default installation folder of Ruby : C:\Ruby27
        • The Default installation folder of Ruby Help Manual : C:\Ruby27\share\doc\ruby\html\
        • The number 27 in Ruby27 is only for sample, you can adjust to your Ruby installation.

        How To Check Your Ruby Gems Version In Command Prompt

        Ruby Gems is packaging/bundling tools in Ruby.
        1. open Command Prompt.
        2. type  gem -v
          or
          type gem --version
        3. press Enter on keyboard.



        Notes: For Ruby Gem CLI ( Command Line Interface ) documentation, type: gem --help

        <<< back to   Study About Ruby

        to learn checking Ruby Gem version, click How-to-check-version-of-ruby-gem >

        Footnote

        • Use this tutorial sample according to your needs, your environment and your requirement.
        • To see the more clear picture, click on the picture
        • to learn about Open Command Prompt in step 1, click How To Launch Command Prompt

        Bibliography

        Ruby in Practice;Manning publisher
        Ruby in a Nutshell;O'Reilly publisher
        https://rubygems.org/ ( manual book )
        https://www.ruby-lang.org/ ( manual book )

        command line, terminal, bash shell, installation, install

        Related Post

        Senin, 21 Oktober 2024

        How To Check Your Dot Net Framework Version

        How To Check Microsoft .Net Framework Version Using File Explorer

        1. Open File Explorer.
        2. Browse the following path: C:\Windows\Microsoft.NET\Framework
        3. Open the folder with the latest version – for example, v4.0.30319.
        4. Right-click any of the ".dll" files and select the Properties option.
        5. Click the Details tab.
        6. In the "Product version" section, confirm the version of .NET – for example, 4.8.9032.0.

        How To Check Microsoft .Net Framework Version Using Registry

        1. Open Start.
        2. Search for regedit and click the top result to open the Registry.
        3. Browse the following path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP.
        4. Expand the main version key – for example, v4 or v4.0.
        5. Select the Client key.
        6. On the right, check the "Version" string to determine the release of the .NET Framework.
        Notes: In releases older than version 4, the Client key will be a number or "Setup." For example, .NET version 3.5 includes the version number under the 1033 key.

        How To Check Microsoft .Net Framework Version Using Program and Features

        1. Open Start menu > Control Panel.
        2. Click “Programs” > “Programs and Features”.
        3. Scroll down to “Microsoft .NET Framework”.
        4. Check the version number next to each entry. It’s usually in a format like “vX.Y.ZZZZ”.

        Bibliography

        https://learn.microsoft.com/
        https://www.process.st/
        https://www.windowscentral.com/

        Rabu, 15 November 2023

        How To Check The GTags or CTags Version

        How To Check The Exuberant Ctags Version

        1. open Command Prompt.
        2. type ctags --version
          or
          type gtags –-version
        3. press Enter on keyboard.

         < to learn about Open Command Prompt in step 1, click How To Launch Command Prompt

        Bibilography:

        https://ctags.sourceforge.net/

        https://github.com/

        https://man.archlinux.org/

        https://manpages.debian.org/

        https://rptu.de/ ( university )

        https://www.gnu.org/

        http://www.ulisboa.pt/ ( university )

        command line, terminal, bash shell, installation, install

        Related Post:

        Rabu, 24 Juli 2024

        How To Check Your Apache Ant Version

        Ant is a build tool. A build tool is used to automate repetitive tasks during this process. This can be, for example, to compiling source code (e.g. Java code), pack this code into an executable jar, running software tests and creating files and documentation (e.g. Javadoc) for the software deployment. Ant is an abbreviation for Another Neat Tool.

        How To Check Your Apache Ant Version In Microsoft Windows

        1. open Command Prompt, type:
            ant –version
        2. press Enter on keyboard.

        Notes

        You can use the other IDE to working with an Apache Ant Build Tools except on the picture ( Eclipse IDE ), for example: Apache Netbeans, JetBrains IntelliJ IDEA, etc.


        << Previous lesson:  Set The JAVA_HOME variable

        Bibliography

        https://ant.apache.org/manual/ ( manual book )
        https://bambangpdp.wordpress.com/
        https://www.vogella.com/

        Minggu, 01 Juni 2025

        How To Check Your FFMpeg Version

        How To Check Your FFMpeg Version In Microsoft Windows

        1. open Command Prompt.
        2. type ffmpeg --version
        3. press Enter on keyboard.
        check ffmpeg version


        Notes: 
        • To see the more clear picture, click on the picture

        Bibliography

        https://github.com/
        https://github.com/ShareX/ShareX/
        https://superuser.com/
        https://www.ffmpeg.org/ ( manual ebook )


        command line, terminal, bash shell, installation, install

        Related Post

        Rabu, 05 April 2023

        Eclipse Version

        This following table about Eclipse version:
        Version name Platform version Projects Main changes
        N/A 1.0
        A Java 1.3*.
        N/A 2.0

        N/A 2.1
        A Java 1.4 or 1.3*.
        N/A 3.0
        A Java 1.4.1*.
        N/A 3.1
        Java 5**^.
        Callisto 3.2 Callisto projects
        Europa 3.3 Europa projects
        Ganymede 3.4 Ganymede projects
        Galileo 3.5 Galileo projects Minimal requirement Java >= 1.5
        Helios 3.6 Helios projects
        Indigo 3.7 Indigo projects Java 7 support (3.7.1 sr1)**^.
        Juno 3.8 and 4.2 Juno projects
        Kepler 4.3 Kepler projects A Java 6 JRE/JDK*.
        Luna 4.4 Luna projects Java 8 support^; in the prior version, use a Java 8 patch plug-in. A Java 7 JRE/JDK*.
        Mars 4.5 Mars projects A Java 7 JRE/JDK*.
        Neon 4.6 Neon projects A Java 8 JRE/JDK*.
        Oxygen 4.7 Oxygen projects Oxygen.1a ( Java 9 and Junit 5 ).
        Oxygen.3a (Java 10)^.
        Unix based platforms^^. A Java 8 or newer*.
        Photon 4.8 Photon projects Dropped support for 32bit Windows and Linux.

         *  Since this Eclipse version, a Java JRE/JDK ( Java runtime Environment /Java development kit ) certain version must be installed on the machine in order to run this version/packages of Eclipse and all packages.
        ** Java 5 features: generics, annotations, boxing-unboxing, enums, enhanced for loop, varargs, static imports.
        *** Java 7 features: Improved Type Inference for Generic Instance Creation (Diamond), Multi-catch, try-with-resources statement, Simplified Varargs Method Invocation, Strings in switch, Binary Literals and Underscores in Numeric Literals, Polymorphic Methods.
        ^ Added or integrated  Java certain version support since this Eclipse version.
        ^^ Dropped support for the following Unix based platforms: AIX, Solaris, HP-UX and s390.

        Notes: You can find the requirement Java SDK in eclipse.ini file: -Dosgi.requiredJavaVersion = 1.8 which can be found in the folder containing eclipse.exe file.

        Related Topics:

        Rabu, 01 November 2023

        Check ImageMagick Version


        To Check ImageMagick Version Method 1

        1. Open a terminal or command prompt or command line and type :
          "convert -version".
        2. then press Enter on keyboard. 
          If ImageMagick is installed, it will return the version number.

        To Check ImageMagick Version Method 2 In Linux / Unix / Apple macOS ( Macintosh )

        1. Open a Linux Terminal or Linux Shell or Linux Command Line or Linux Console 
        2. and type : 
          "which convert" 
          command on a Linux/Apple macOS ( Macintosh )
        3. then press Enter on keyboard.
        4. This will return the path to the convert executable if it is installed.

        To Check ImageMagick Version Method 2 In Microsoft Windows

        1. Open a Microsoft Windows Command Prompt or Microsoft Windows Command Line 
        2. and type :
          "where convert"
          command on a windows.
        3. then press Enter on keyboard.
        4. This will return the path to the convert executable if it is installed.

        To Check ImageMagick Version Method 3

        1. You can use the command "magick -version" to check the version of ImageMagick.
        2. then press Enter on keyboard.
        3. This will return the path to the convert executable if it is installed.

        NOTES

        Every command in monospace font type, must be typing without double quotes, except the command with parameter and option that need a whitespace and other character.

        how to verify imagemagick installation, command line program, command prompt software

        Sabtu, 09 September 2023

        How-to-check-version-of-python-modules

        How To Check Python Modules Using pip freeze

        First step is open Command Line, and then:

        To list all installed Python modules with their version numbers, use the following command:

        1. pip freeze
        2. and then press Enter on the keyboard.

        To individually find the version number you can grep on this output on *NIX machines. For example:

        1. $ pip freeze | grep PyMySQL
        2. and then press Enter on the keyboard.
        3. The sample result:
          PyMySQL==0.7.11

        On windows, you can use findstr instead of grep. For example:

        1. PS C:\> pip freeze | findstr PyMySql
        2. and then press Enter on the keyboard.
        3. The sample result:
          PyMySQL==0.7.11

        Notes

        • pip freeze shows packages that you only installed via pip or pipenv command tool.
        • pip freeze excludes package management tools such as pip, wheeldistribute and setuptools, which are not needed for porting environments via requirements.txt, making it ideal for this purpose.
        • pip freeze generate output suitable for a requirements file (requirements.txt).

        How To Check Python Modules Using pip list

        To list all installed Python modules with their version numbers, use the following command:
        1. open Command Line, and then:
          pip list
        2. and then press Enter on the keyboard.
        3. The sample result:
          Package                             Version
          ---------------------------------- ----------
          PyMySQL                             0.7.11

        To individually find the version number you can grep on this output on *NIX machines. For example:

        1. $ pip list | grep PyMySQL
        2. and then press Enter on the keyboard.
        3. The sample result:
          Package                             Version
          ---------------------------------- ----------
          PyMySQL                             0.7.11

        On windows, you can use findstr instead of grep. For example:

        1. PS C:\> pip list | findstr PyMySql
        2. and then press Enter on the keyboard.
        3. The sample result:
          Package                             Version
          ---------------------------------- ----------
          PyMySQL                             0.7.11

        How To List All Python Modules Index

        to list all installed Python modules with python console, 

        1. Open Command Line
        2. type python command.
          and then press Enter on the keyboard.
        3. use the following command:
          help("modules")
          and then press Enter on the keyboard.
        4. The result will be display all Python modules index that are available after you have installed.

          display all Python modules index

        If you want to quit from python console, type quit() command.

        Warning:
        If you have many installed Python modules, maybe thousands or more, there might be a potential of many spent time to show, so it is not surprising that it might hang your Python interactive console / Python interpreter / Python shell.

        Notes: To see the more clear picture, click on the picture.

        << back to Study About Python


        Bibliography:

        https://docs.python.org/

        https://pip.pypa.io/en/stable/

        https://www.activestate.com/

        https://realpython.com/

        https://stackoverflow.com/

        https://note.nkmk.me/en/

        https://www.tutorialspoint.com/

        https://www.digitalocean.com/

        Related Topics: