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.

5890 questions
1315
votes
22 answers

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

How can I check what version of the Python Interpreter is interpreting my script?
carrier
  • 29,579
  • 22
  • 74
  • 99
800
votes
58 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
  • 163,579
  • 332
  • 834
  • 1,328
798
votes
11 answers

How do I remove version tracking from a project cloned from git?

I want to remove all version tracking from a project's directory. What is the correct method to do this? Can I do a shell command such as: rm -rf .git from my projects directory or is there a way to do this as a Git command? I used this project to…
daustin777
  • 10,668
  • 8
  • 23
  • 25
778
votes
5 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
  • 16,432
  • 12
  • 33
  • 43
689
votes
27 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
  • 7,201
  • 3
  • 13
  • 10
642
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,563
  • 4
  • 12
  • 10
533
votes
13 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
  • 8,566
  • 8
  • 39
  • 53
504
votes
9 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
  • 6,869
  • 4
  • 23
  • 37
497
votes
23 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
  • 6,681
  • 7
  • 26
  • 42
461
votes
12 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
  • 9,917
  • 5
  • 39
  • 56
418
votes
11 answers

How to update Ruby Version 2.0.0 to the latest version in Mac OSX 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,193
  • 3
  • 7
  • 6
397
votes
10 answers

Which version of MVC am I using?

I can't find it for some reason, feeling a little dumb. How do I know? I'm using .net 4 with VS2010.
EKet
  • 6,964
  • 15
  • 49
  • 69
363
votes
6 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
  • 26,318
  • 26
  • 92
  • 153
338
votes
16 answers

How to find which version of TensorFlow is installed in my system?

I need to find which version of TensorFlow I have installed. I'm using Ubuntu 16.04 Long Term Support.
Hans Krupakar
  • 3,663
  • 2
  • 10
  • 19
319
votes
17 answers

Version of Apache installed on a Debian machine

How can I check which version of Apache is installed on a Debian machine? Is there a command for doing this?
pindiwala
  • 3,547
  • 4
  • 18
  • 14
1
2 3
99 100