upgrade

How to force `conda` to install the latest version of `jupyter`?

余生颓废 提交于 2019-12-11 18:04:16
问题 This question is motivated by `jupyter notebook` gives error: `"Could not open static file ''"` on macOS After conda update jupyter , jupyter --version gives jupyter-notebook : 6.0.0 However on https://github.com/jupyter/notebook, clicking Branch: master -> tags I see a 6.0.1 tag. How can I upgrade to 6.0.1 ? > conda install jupyter=6.0.1 Collecting package metadata (current_repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve. Collecting

Unable to execute Sonar after sonar-java-plugin 4.0 upgrade

旧城冷巷雨未停 提交于 2019-12-11 17:45:32
问题 After upgrading SonarQube from 5.5 to 5.6.5 our Gradle build worked as expected until the SonarJava plugin was updated. We updated from 3.13.1 to 4.x (I tried 4.0, 4.8, and 4.9). I had to 'down grade' the plugin back to 3.13.1 for the build to pass. The main reason we upgraded the SonarQube server was so the developers could use SonarLint and SonarJava v4.0 is a minimum requirement. The error I get is: ERROR: Caused by: sonar.binaries and sonar.libraries are not supported since version 4.0 of

WiX Upgrade without uninstallation of existing version

老子叫甜甜 提交于 2019-12-11 16:15:05
问题 The MajorUpgrade element in WiX seems to be uninstalling the existing version. But I have a requirement wherein I have to upgrade from 1.0.0 to 2.0.0 without uninstalling 1.0.0. But this doesn't mean, it will have both 1.0.0 and 2.0.0 showing in the Add/Remove Programs. My 1.0.0 version has a file, a registry entry, a custom windows service and so on. My 2.0.0 essentially, will modify an existing file and add a new file. In our case, it is possible to make only changes like these and still

Upgrading Angular 2 to Angular 6

雨燕双飞 提交于 2019-12-11 16:12:05
问题 I am upgrading the angular version from 2 to 6 by following the Angular Update Guide, but after migrating Angular CLI globally and locally, it could not generate the angular.json file. The project includes systemjs.config.js, it did not have angular-cli.json file, nor @angular/cli dependencies in package json. What can be done to solve this? 来源: https://stackoverflow.com/questions/52059518/upgrading-angular-2-to-angular-6

Play framework2.4 can not add key store value to .scala build sbt file

时光毁灭记忆、已成空白 提交于 2019-12-11 15:29:55
问题 I'am trying to upgrade to play framework 2.4 from play 2.3, but when refreshing SBT I got the following error: build/*:resourceDirectory from build/*:privateKeystore ((project.Build).scala:10) [error] Did you mean build/compile:resourceDirectory I'am using .scala file as SBT build file play 2.3: which used to be working well privateKeystore := confDirectory.value / "myProject.private.jks" play 2.4: the change that caused the error privateKeystore := resourceDirectory.value / "myProject

WiX MSI upgrade disallows installation of some components

社会主义新天地 提交于 2019-12-11 13:11:37
问题 When I try to do an upgrade of my project, I get the following logs for about eight or so components: MSI (c) (24:EC) [11:50:17:422]: Disallowing installation of component: {290E89A8-6BA7-59F2-B350-BE657C2823BC} since the same component with higher versioned keyfile exists The uninstall portion of the upgrade seems to remove all of the previously installed files, but when it installs the new files during the upgrade, it seems to disallow the installation of eight or so components/files. The

ClassNotFoundException: ClassUtils when trying to use MyFaces 2.1.10 with IBM WebSphere 7.0

会有一股神秘感。 提交于 2019-12-11 12:40:14
问题 Because of PrimeFaces bug with p:messages I've tried to upgrade the MyFaces version used with IBM WebSphere 7.0 from 2.0.7 to 2.1.10. Unfortunatelly, the myfaces-impl jar I've downloaded from myFaces page does not contain many utility classes from package org/apache/myfaces/shared_impl/util/ that were in the version 2.0.7 that was already in the project. The whole stack trace is: java.lang.NoClassDefFoundError: org/apache/myfaces/shared_impl/util/ClassUtils at com.ibm.ws.jsf.config.annotation

How to have PathwaysMDF and LDF overwrite old copies on a major upgrade of Wix?

≡放荡痞女 提交于 2019-12-11 11:48:41
问题 I need both these files, PathwaysMDF and PathwaysLDF to replace (overwrite) the old copies on a major upgrade. Okay, this WiX is driving me crazy. The settings file works perfectly, however the database files are still not working! I have tried several approaches... Here is the code attempting this with the registry key: <Component Id="Database" Guid="1D8756EF-FD6C-49BC-8400-299492E8C65D" > <RegistryValue Root="HKLM" Key="Software\TDR\Pathways\Database" Name="installed" Type="integer" Value=

WSO2 API Manager - Upgrade 1.6.0 to 1.7.0 [closed]

做~自己de王妃 提交于 2019-12-11 11:06:11
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I have configured API Manager 1.6.0 with MySQL. I have tried to run the version 1.7.0 with same conections and I have several errors like this Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'wso2_apiManagerdb.IDN_OAUTH2_SCOPE' doesn't exist Exists any documentation for migrate?

Upgrade database on deployed Android app on update

匆匆过客 提交于 2019-12-11 09:54:01
问题 I have an app deployed on play store. I use SQLite database. The app that is on play store have db version 3. Now for the upcoming update I want to add another column to the table in the database, so I am going to increase db version to 4. I have made that logic inside my onUpgrade() method. I am just wondering how you find it, how you get around this kind of situation, for even further updates like the one with db version 5. I just want to get your opinions. Thanks a lot. @Override public