Questions tagged [upgrade]

This tag refers to the process of replacing a particular system with a newer version of the same system

With computer , an upgrade is a term that describes adding or replacing physical components to a computer that improves its performance.

When referring to software, a software upgrade generally refers to any major upgrade to the software that adds significant changes to the program.

4652 questions
12
votes
4 answers

Can't upgrade Scipy

I'm trying to upgrade Scipy from 0.9.0 to 0.12.0. I use the command: sudo pip install --upgrade scipy and I get all sorts of errors which can be seen in the pip.log file here and I'm unfortunately not python-savvy enough to understand what's wrong.…
Gabriel
  • 40,504
  • 73
  • 230
  • 404
12
votes
3 answers

How to update Eclipse from 3.4 (Ganymede) to 3.5 (Galileo)?

I've got my Eclipse 3.4 envirnoment set up nice and cozy the way I like it. Took me some time too, to find all the plugins (Mylin, PDT, Subclipse), set all the settings, etc. Now I see that some of the plugins (like PDT) only support 3.5 in their…
Vilx-
  • 104,512
  • 87
  • 279
  • 422
11
votes
0 answers

Running into an error after upgrading springboot from 2.3.9 to 2.6.3

After upgrading from springboot 2.3.9 to 2.6.6 I have a failing tests with the following error, java.lang.AssertionError: Expecting:
Yashwanth B
  • 111
  • 4
11
votes
2 answers

python 3.7 venv broken after upgrade to Ubuntu 20.04

I've just upgraded to Ubuntu 20.04. I was working with a python 3.7 project using Django inside a virtual environment, so I was confident even with the upgraded distro (which involved the installation of python 3.8) my venv would still worked.…
dc_Bita98
  • 851
  • 2
  • 17
  • 35
11
votes
2 answers

Call to undefined method Illuminate\Routing\RouteFileRegistrar::get() - Error after upgrading from Laravel 5.7 to 5.8

I have a running app written on Laravel 5.7. I tried to change the record in composer.json to match "5.8.*" and ran composer update. On my local (win10/WAMP) machine it went fine, but on the staging server (Debian 9/nginx) the update command changed…
Boyan
  • 456
  • 3
  • 16
11
votes
2 answers

What is the process "python3 unattended upgrade shutdown"?

I was looking at the process list on my Ubuntu 18.04 server and saw the following two processes: 930 ? Ssl 0:00 /usr/bin/python3 /usr/bin/networkd-dispatcher --run-startup-triggers 958 ? Ssl 0:00 /usr/bin/python3…
Erel Segal-Halevi
  • 33,955
  • 36
  • 114
  • 183
11
votes
2 answers

Consequences for virtual env when system's Python is removed and/or updated

EDIT FOR CLARITY: This question is in reference to venv, which is often confused with virtualenv. What are the consequences of removing the system's Python installation which was the source used to create virtual environments on the system using…
Joshua Schlichting
  • 3,110
  • 6
  • 28
  • 54
11
votes
1 answer

Is it possible to upgrade angularjs atttribute directives to use in angular 4?

I've been able to upgrade an angularjs element directive to be used in angular 4. Here's a sample code: [myScores.js] angular.module('app.components.directives.myScores', []) .directive('myScores', function() { return { scope: { score:…
Will
  • 1,718
  • 3
  • 15
  • 23
11
votes
4 answers

How to update mysql version in xampp (error with innodb_additional_mem_pool_size)

I'm trying to upgrade mysql in xamp. I'm using laravel which requires mariaDB v10.2.2. So I downloaded the latest msi package from the mariaDB website. Now I followed following points to install the same: Install MySQL to C:\TEMP. Make old…
Nitish Kumar
  • 6,054
  • 21
  • 82
  • 148
11
votes
4 answers

How to upgrade Eclipse from 3.5 (Galileo) to 3.6 (Helios) the proper way?

I notice this question has been asked a few times but I don't really like the solution with two Eclipses in parallel. I just want my Galileo upgraded to Helios with preservation of all settings, plugins and workspaces, without the mumbo-jumbo like…
EDWH
  • 491
  • 2
  • 5
  • 11
11
votes
2 answers

Getting ready to convert from Python 2.x to 3.x

As we all know by now (I hope), Python 3 is slowly beginning to replace Python 2.x. Of course it will be many MANY years before most of the existing code is finally ported, but there are things we can do right now in our version 2.x code to make the…
Wayne Werner
  • 49,299
  • 29
  • 200
  • 290
11
votes
9 answers

Laravel 5.1: Class html does not exist

I am upgrading from 4.2 directly to 5.1 and run into problems with the Html and Form classes. I followed the upgrade notes, and did add "laravelcollective/html": "~5.0" to composer.json composer update add …
11
votes
4 answers

Upgrading grails from 2.1.1 to 2.4.3

I am upgrading a grails app from 2.1.1 to 2.4.3 and solving errors along the upgrade is a never ending story. Now I am stuck at this point. Any ideas how to solve this? Thanks! C:\workspace\grails_apps\monitoring>grails run-app | Running Grails…
user955732
  • 1,330
  • 3
  • 21
  • 48
11
votes
3 answers

Does a change to an ASP.NET site kill active sessions?

I'm concerned about the possibility of my users' sessions getting swept away. I am using the default ASP.NET Session object and session cookies. I know that sessions can time out, and I have set the timeout value for my sessions to several hours to…
M Katz
  • 5,098
  • 3
  • 44
  • 66
11
votes
3 answers

presentModalViewController:animated is deprecated

I am getting a warning in XCode: 'presentModalViewController:animated:' is deprecated: first deprecated in iOS 6.0 on this line of code: [self presentModalViewController:initialSettingsVC animated:YES]; I tried to replace it as suggested in the…
poiuytrez
  • 21,330
  • 35
  • 113
  • 172