CacheCow.Server 0.5.0-alpha (Pre-release) has dependency on CacheCow.Common (≥ 0.5.0) but yet this version is not available on NuGet.
While I'm installing CacheCow.Server 0.5.0, it's failing due to the dependency on Cache.Common 0.5.0
Does anyone has idea when this will be available on NuGet ??
This issue is resolved.
Please refer following URL for the solution steps -
http://byterot.blogspot.in/2013/12/cachecow-0.5.0-alpha-new-feature-breaking-changes-asp-net-web-api.html
Related
I've installed Magento with sample data on a virtual machine. Now I'm trying to install Live Search for it. I used the instructions from this link. As the instruction says, I run the command below:
composer require magento/live-search
But it gives me an error:
Problem 1
- magento/live-search 2.0.0 requires magento/module-live-search-metrics 2.0.0 -> could not be found in any version, there may be a typo in the package name.
- magento/live-search 2.0.1 requires magento/module-live-search-metrics 2.0.1 -> could not be found in any version, there may be a typo in the package name.
- magento/live-search 2.0.2 requires magento/module-live-search-metrics 2.0.2 -> could not be found in any version, there may be a typo in the package name.
- magento/live-search 2.0.3 requires magento/module-live-search-metrics 2.0.3 -> could not be found in any version, there may be a typo in the package name.
- Root composer.json requires magento/live-search ^2.0 -> satisfiable by magento/live-search[2.0.0, 2.0.1, 2.0.2, 2.0.3].
Potential causes:
- A typo in the package name
- The package is not available in a stable-enough version according to your minimum-stability setting
see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details.
- It's a private package and you forgot to add a custom repository to find it
Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.
You can also try re-running composer require with an explicit version constraint, e.g. "composer require magento/live-search:*" to figure out if any version is installable, or "composer require magento/live-search:^2.1" if you know which you need.
As I can see, it says magento/module-live-search-metrics does not exist, but I couldn't find anyone else who has the same problem as mine, which means this is only my problem.
You just have to type:
composer require magento/module-live-search
and that's it =)
I had earlier installed maatwebsite/excel-3.1, and it was okay. I have Laravel-8 and PHP-7.3 and I am trying to install cyber-duck:
composer require cyber-duck/laravel-excel
But I got this error:
Your requirements could not be resolved to an installable set of packages.
Problem 1
Root composer.json requires cyber-duck/laravel-excel ^2.1 -> >satisfiable by cyber-duck/laravel-excel[2.1.0].
cyber-duck/laravel-excel 2.1.0 requires illuminate/database >^6.0.0|^7.0.0 -> found illuminate/database[v6.0.0, ..., 6.x-dev, v7.0.0, >..., 7.x-dev] but these were not loaded, likely because it conflicts with >another require.
How do I resolve this?
Thanks
As far as release versions of cyber-duck/laravel-excel are concerned, the latest version of the package (commit: b98ad4d) is only supporting Laravel version 7.x.
https://github.com/Cyber-Duck/laravel-excel/releases
So, either you have to downgrade your Laravel version or wait for the latest release version which supports Laravel version 8.x.
I met this problem when I install the package “survminer”
Other packages are still available for installing except for this one.
How could I solve this problem?
Should I update my Rstudio ?
The part with namespace 'tibble' 2.1.3 is already loaded, but >= 3.0.0 is required is telling you that you need to upgrade your tibble package to version > 3.0.0. Try update.packages(ask=F)
Similar to R install package loaded namespace
Since upgrading from Heroku-16 to Heroku-18 stack, my .NET Core 2.2 App that references System.Drawing.Common to use GDI+ throws the error:
System.TypeInitializationException: The type initializer for 'Gdip' threw an exception.
--->System.DllNotFoundException: Unable to load DLL 'libgdiplus': The specified module could not be found.
at System.Runtime.InteropServices.FunctionWrapper `1.get_Delegate()
at System.Drawing.SafeNativeMethods.Gdip.GdiplusStartup(IntPtr& token, StartupInput& input, StartupOutput& output)
at System.Drawing.SafeNativeMethods.Gdip..cctor()
This is because libc6-dev is not installed (see this issue). I'm using heroku-buildpack-apt to install both libgdiplus and libc6-dev), but it appears that the package is no longer available at runtime on Heroku-18, only at build time (see this page).
From the build log:
remote: -----> Fetching .debs for libc6-dev
remote: Reading package lists...
remote: Building dependency tree...
remote: Reinstallation of libc6-dev is not possible, it cannot be downloaded.
remote: 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reverting back to Heroku-16 solves the issue.
How can this I make this work on the Heroku-18 stack?? Anyone found a way?
From Heroku support:
I am really sorry for the trouble but it will not be possible in my view. This package libc6-dev2.27-3ubuntu1 means that the package is available only at build time, but not at runtime. Moreover if you have some requirement you can check https://elements.heroku.com/buildpacks/eugeneotto/heroku-buildpack-secp256k1 but this is not officially supported buildpack and we do not provide support for this.
.NET Core 3.x, together with the latest version of System.Drawing.Common, contain fixes which remove the dependency on libc6-dev.
If installing libc6-dev is not possible, you can try to:
Upgrade to .NET Core 3.0
Upgrade to libgdiplus 4.6.0 or later (I'd recommend 4.7.0)
I could not update the WindowsAzure.Storage NuGet Package. It seems other package that probably depends on it, each time I update that package, I got the same error:
Install failed. Rolling back... Updating 'Microsoft.Data.OData 5.6.2'
to 'Microsoft.Data.OData 5.6.4' failed. Unable to find versions of
'WindowsAzure.MobileServices.Backend.Tables,
WindowsAzure.MobileServices.Backend.Entity' that are compatible with
'Microsoft.Data.OData 5.6.4'.
Why do I get this and how can I resolve this issue?
Why do I get this and how can I resolve this issue?
According to the nuget package of WindowsAzure.Storage, you will find this package have a dependencies is Microsoft.Data.OData (>= 5.6.2):
when you update the package WindowsAzure.Storage, the dependency package Microsoft.Data.OData (>= 5.6.2) also need to upgrade to 5.6.4.
However, the nuget packages WindowsAzure.MobileServices.Backend.Tables and WindowsAzure.MobileServices.Backend.Entity' are dependent on Microsoft.Data.OData (>= 5.6.2):
In this case, NuGet could not update the nuget package WindowsAzure.Storage.
To resolve this issue, you can use the option IgnoreDependencies when you update that package:
update-package WindowsAzure.Storage -IgnoreDependencies