Skip to main content

Questions tagged [version]

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

Filter by
Sorted by
Tagged with
2869 votes
23 answers
3.1m views

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's user avatar
  • 44.3k
1726 votes
24 answers
1.5m views

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....
Pablo Ezequiel Inchausti's user avatar
1482 votes
27 answers
1.8m views

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? See Find full path of the Python interpreter (Python executable)? if you are looking to find exactly which interpreter is ...
carrier's user avatar
  • 32.7k
930 votes
34 answers
577k views

Is there a way to get the version from the 'package.json' file in Node.js code?

Is there a way to get the version set in the package.json file in a Node.js application? I would want something like this var port = process.env.PORT || 3000 app.listen port console.log "Express ...
Abhik Bose Pramanik's user avatar
920 votes
62 answers
1.4m views

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, ...
leora's user avatar
  • 194k
895 votes
6 answers
613k views

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 ...
Enyra's user avatar
  • 17.9k
782 votes
8 answers
578k views

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 ...
Erel Segal-Halevi's user avatar
719 votes
34 answers
888k views

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 successfully. ...
maheshgupta024's user avatar
687 votes
26 answers
1.9m views

Unsupported major.minor version 52.0 [duplicate]

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" ...
user3397452's user avatar
  • 7,031
630 votes
7 answers
563k views

List of Java class file format major version numbers?

I saw this list of major version numbers for Java in another post: Java Major version 22 66 21 65 20 64 19 63 18 62 17 61 16 60 15 59 14 58 13 57 12 56 11 55 10 54 9 53 8 52 7 51 6 ...
Robert Mark Bram's user avatar
598 votes
26 answers
1.8m views

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's user avatar
  • 7,901
593 votes
14 answers
644k views

How can I check the system version of Android?

Does anyone know how to check the system version (e.g. 1.0, 2.2, etc.) programmatically ?
davs's user avatar
  • 9,326
575 votes
13 answers
687k views

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 ...
mpiktas's user avatar
  • 11.5k
524 votes
15 answers
744k views

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 ...
ChuchaC's user avatar
  • 5,253
443 votes
17 answers
259k views

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 ...
Savir's user avatar
  • 18.2k
412 votes
10 answers
140k views

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's user avatar
  • 7,304
400 votes
4 answers
171k views

What does Bump Version stand for?

I saw this comment in git many times. What does it mean actually?
user80805's user avatar
  • 6,338
394 votes
20 answers
1.2m views

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's user avatar
377 votes
17 answers
666k views

How do I check which version of NumPy I'm using?

How can I check which version of NumPy I'm using?
larus's user avatar
  • 4,447
376 votes
21 answers
319k views

Which version of C# am I using

I want to find out which version of C# I'm using. If I would be using python I would do something like python -V from the command line, or type: import sys print sys.version In PHP I would do ...
Salvador Dali's user avatar
374 votes
13 answers
525k views

Upgrade Python in a virtual environment

Is there a way to upgrade the version of Python used in a virtual environment (e.g. if a bugfix release comes out)? I could pip freeze --local > requirements.txt, then remove the directory and pip ...
Simon Walker's user avatar
  • 5,811
370 votes
24 answers
715k views

How do I find the installed .NET versions?

How do I find out which version of .NET is installed? I'm looking for something as simple as java -version that I can type at the command prompt and that tells me the current version(s) installed. I ...
sepang's user avatar
  • 5,000
349 votes
34 answers
513k views

How can you detect the version of a browser?

I've been searching around for code that would let me detect if the user visiting the website has Firefox 3 or 4. All I have found is code to detect the type of browser but not the version. How can I ...
odle's user avatar
  • 5,252
336 votes
16 answers
284k views

Retrieve version from maven pom.xml in code

What is the simplest way to retrieve version number from maven's pom.xml in code, i.e., programatically?
Michael's user avatar
  • 4,745
334 votes
7 answers
603k views

Which TensorFlow and CUDA version combinations are compatible?

I have noticed that some newer TensorFlow versions are incompatible with older CUDA and cuDNN versions. Does an overview of the compatible versions or even a list of officially tested combinations ...
whiletrue's user avatar
  • 10.8k
330 votes
18 answers
481k views

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's user avatar
  • 3,677
304 votes
14 answers
555k views

How to check version of a CocoaPods framework

I have updated Flurry via CocoaPods, but how can I check if Flurry was updated? I mean the terminal shown me that everything is ok: Installing FlurrySDK (4.2.3) Generating Pods project Integrating ...
Oleksandr Matrosov's user avatar
297 votes
12 answers
234k views

versionCode vs versionName in Android Manifest

I had my app in the android market with version code = 2 and version name = 1.1 However, while updating it today, I changed the version code = 3 in the manifest but by mistake changed my version name ...
user838522's user avatar
  • 3,921
284 votes
7 answers
381k views

Check Redis server version

how to check Redis server version? I've found in Redis site this command: $ redis-server and that should give me (according to the site): [28550] 01 Aug 19:29:28 # Warning: no config file specified, ...
Aviram Netanel's user avatar
283 votes
25 answers
216k views

Flutter: upgrade the version code for play store

I have published an application on the play store with flutter, now I want to upload a new version of the application. I am trying to change the version code with: flutter build apk --build-name=1.0....
Pondikpa Tchabao's user avatar
280 votes
11 answers
138k views

How to check if Gradle dependency has new version?

In Android Studio when I use a + in the version number like: com.android.support:recyclerview-v7:21.+ I get a "Avoid using + in version numbers" warning. But when I use a specific version ...
osrl's user avatar
  • 7,758
267 votes
17 answers
184k views

How to display the app version in Angular?

How do I display the app version in Angular application? The version should be taken from package.json file. { "name": "angular-app", "version": "0.0.1", ....
Zbynek's user avatar
  • 5,833
256 votes
16 answers
115k views

How can my iphone app detect its own version number?

I'm writing an iPhone app. It's already been published, but I would like to add a feature where its version number is displayed. I'd rather not have to do this manually with each version I release......
user avatar
251 votes
19 answers
267k views

How can I check for Python version in a program that uses new language features?

If I have a Python script that requires at least a particular version of Python, what is the correct way to fail gracefully when an earlier version of Python is used to launch the script? How do I ...
Mark Harrison's user avatar
244 votes
11 answers
217k views

How can I check the version before installing a package using 'apt-get'?

I'm thinking to install hylafax+ version 5.5.4 which was released last month on my Debian PC. I checked dpkg -l | grep "hylafax" and found out that the current version is 5.5.3. Then I ...
Yasiru G's user avatar
  • 7,064
228 votes
28 answers
291k views

Node - was compiled against a different Node.js version using NODE_MODULE_VERSION 51

I am running a node application on terminal. Have recently upgraded to node v8.5.0, but am getting this error: Error: The module '/tidee/tidee-au/packages/tidee-au-server/node_modules/bcrypt/lib/...
JoeTidee's user avatar
  • 25.7k
226 votes
8 answers
223k views

Installing older version of R package

I am trying to use Rpy2 and ggplot2 but I get an error. After some searching for the error online, I found that the error occurs because there are changes in the ggplot2 package that are not yet ...
hirolau's user avatar
  • 13.8k
225 votes
18 answers
423k views

PowerShell script to return versions of .NET Framework on a machine?

What would a PowerShell script be to return versions of the .NET Framework on a machine? My first guess is something involving WMI. Is there something better? It should be a one-liner to return only ...
MattUebel's user avatar
  • 2,797
218 votes
8 answers
241k views

How to get build and version number of Flutter app

I am currently developing an application which is currently in beta mode. Due to this, I would like to show them what version they are on. For example, "v1.0b10 - iOS". So far, I have got this code: ...
iProgram's user avatar
  • 6,387
212 votes
8 answers
82k views

Maven check for updated dependencies in repository

Is there a Maven plugin that allows you to check if there are newer versions of dependencies available in the repository? Say, you are using dependency X with version 1.2. Now a new version of X is ...
froethen's user avatar
  • 2,133
195 votes
29 answers
176k views

What do the numbers in a version typically represent (i.e. v1.9.0.1)?

I've always assumed each number delineated by a period represented a single component of the software. If that's true, do they ever represent something different? How should a version number be ...
BeachRunnerFred's user avatar
182 votes
8 answers
276k views

How to check the installed version of Flutter?

How do I find the version of Flutter I have installed on my computer?
user8637708's user avatar
  • 3,633
174 votes
30 answers
156k views

Check if my app has a new version on AppStore

I would like to manually check if there are new updates for my app while the user is in it, and prompt him to download the new version. Can I do this by checking the version of my app in the app store ...
user542584's user avatar
  • 2,691
174 votes
6 answers
305k views

How to check SQL Server version

What are the possible ways to determine the deployed SQL Server version? I’ve tried to do it using the SQL Server software. I want to do it using a command line SQL statement.
Yameen Bashir's user avatar
173 votes
7 answers
213k views

Difference between Eclipse Europa, Helios, Galileo

What is the difference between versions of Eclipse (Europa, Helios, Galileo)? Which is the best for desktop application?
Ballon's user avatar
  • 7,106
172 votes
7 answers
95k views

Compare version numbers without using split function

How do I compare version numbers? For instance: x = 1.23.56.1487.5 y = 1.24.55.487.2
Sankar M's user avatar
  • 4,699
172 votes
13 answers
333k views

How to detect my browser version and operating system using JavaScript?

I have tried using the code below but it only display results in Chrome and Mozilla not working in IE6. <div id="example"></div> <script type="text/javascript"> txt = "<p>...
capri's user avatar
  • 2,117
170 votes
6 answers
262k views

How to change Python version of existing conda virtual environment?

I created a conda environment with Python version 3.8, but it doesn't support matplotlib... So I am looking for something like this to change the Python version: conda env my_env update to python=3.6. ...
elixirtrip's user avatar
  • 1,803
169 votes
18 answers
69k views

How to do version numbers? [closed]

My company is building a product. It's going to be versioned by SVN. It's a webapp so basically there will never be a version out which doesn't have some features in them and thus could always be ...
Thomaschaaf's user avatar
169 votes
15 answers
198k views

How to determine the Boost version on a system?

Is there a quick way to determine the version of the Boost C++ libraries on a system?
Jan Deinhard's user avatar

1
2 3 4 5
144