Questions tagged [version]

Version defines an unique state of a computer software or a file.

Versions and version control systems are widely used in software industry to keep track of different versions of a piece of software.

Following processes and techniques are often used in computer software engineering to keep track of different versions:

Software versioning is the process of assigning either unique version names or unique version numbers to unique states of computer software.

At a fine-grained level, revision control is often used for keeping track of incrementally different versions of electronic information, whether or not this information is actually computer software.

One of the forms of revision control is a versioning file system. Such a system is any computer file system which allows a computer file to exist in several versions at the same time.

6717 questions
2829
votes
23 answers

Determine installed PowerShell version

How can I determine what version of PowerShell is installed on a computer, and indeed if it is installed at all?
Tangiest
  • 43,737
  • 24
  • 82
  • 113
1454
votes
27 answers

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

How do I check which version of the Python interpreter is running my script?
carrier
  • 32,209
  • 23
  • 76
  • 99
1448
votes
27 answers

How can the default node version be set using NVM?

I have installed nvm (ubuntu with zsh shell) with two node version: v6.11.5 and v9.0.0 and the default version in nvm is the v9.0.0 Every time I need to change the node version $ nvm list v6.11.5 -> v9.0.0 system default ->…
Pablo Ezequiel Inchausti
  • 16,623
  • 7
  • 28
  • 42
894
votes
61 answers

The located assembly's manifest definition does not match the assembly reference

I am trying to run some unit tests in a C# Windows Forms application (Visual Studio 2005), and I get the following error: System.IO.FileLoadException: Could not load file or assembly 'Utility, Version=1.2.0.200, Culture=neutral,…
leora
  • 188,729
  • 360
  • 878
  • 1,366
887
votes
31 answers

Is there a way to get version from package.json in nodejs code?

Is there a way to get the version set in package.json in a nodejs app? I would want something like this var port = process.env.PORT || 3000 app.listen port console.log "Express server listening on port %d in %s mode %s", app.address().port,…
Abhik Bose Pramanik
  • 9,181
  • 4
  • 16
  • 10
867
votes
6 answers

How can I get the assembly file version

In AssemblyInfo there are two assembly versions: AssemblyVersion: Specify the version of the assembly being attributed. AssemblyFileVersion: Instructs a compiler to use a specific version number for the Win32 file version resource. The Win32 file…
Enyra
  • 17,542
  • 12
  • 35
  • 44
702
votes
32 answers

How to check Django version

I have to use Python and Django for our application. So, I have two versions of Python, 2.6 and 2.7. Now I have installed Django. I could run the sample application for testing Django succesfuly. But how do I make sure whether Django uses the 2.6 or…
maheshgupta024
  • 7,657
  • 3
  • 20
  • 18
701
votes
7 answers

How can I specify the required Node.js version in package.json?

I have a Node.js project that requires Node version 12 or higher. Is there a way to specify this in the packages.json file, so that the installer will automatically check and inform the users if they need to upgrade?
Erel Segal-Halevi
  • 33,955
  • 36
  • 114
  • 183
680
votes
26 answers

Unsupported major.minor version 52.0

Pictures: Command Prompt showing versions Picture of error Hello.java import java.applet.Applet; import java.awt.*; public class Hello extends Applet { // Java applet to draw "Hello World" public void paint (Graphics page) { …
user3397452
  • 6,961
  • 4
  • 14
  • 10
586
votes
14 answers

How can I check the system version of Android?

Does anyone know how can I check the system version (e.g. 1.0, 2.2, etc.) programatically?
davs
  • 9,226
  • 8
  • 41
  • 54
564
votes
26 answers

Which version of Python do I have installed?

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.
Ali_IT
  • 7,551
  • 8
  • 28
  • 44
557
votes
13 answers

How to find out which package version is loaded in R?

I am in a process of figuring out how to use my university cluster. It has 2 versions of R installed. System wide R 2.11 (Debian 6.0) and R 2.14.2 in non-standard location. I am trying to use MPI together with snow. The code I am trying to run is…
mpiktas
  • 11,258
  • 7
  • 44
  • 57
530
votes
7 answers

List of Java class file format major version numbers?

I saw this list of major version numbers for Java in another post: Java Major…
Robert Mark Bram
  • 8,104
  • 8
  • 52
  • 73
488
votes
14 answers

How can I update Ruby version 2.0.0 to the latest version in Mac OS X v10.10 (Yosemite)?

I need to update my Ruby version from 2.0.0 to the latest version. I can not use some gems because my version is not updated. I had used Homebrew to install Ruby some time ago. How can I update my Ruby version?
ChuchaC
  • 4,893
  • 3
  • 10
  • 6
423
votes
16 answers

How do I compare version numbers in Python?

I am walking a directory that contains eggs to add those eggs to the sys.path. If there are two versions of the same .egg in the directory, I want to add only the latest one. I have a regular expression…
Savir
  • 17,568
  • 15
  • 82
  • 136
1
2 3
99 100