ERROR: dependency ‘Rcpp’ is not available for package ‘minqa’
* removing ‘/home/vivek/R/x86_64-pc-linux-gnu-library/2.15/minqa’
ERROR: dependency ‘Rcpp’ is not available for package ‘RcppEigen’
* removing ‘/home/vivek/R/x86_64-pc-linux-gnu-library/2.15/RcppEigen’
ERROR: dependency ‘pbkrtest’ is not available for package ‘car’
* removing ‘/home/vivek/R/x86_64-pc-linux-gnu-library/2.15/car’
ERROR: dependencies ‘Rcpp’, ‘minqa’ are not available for package ‘lme4’
* removing ‘/home/vivek/R/x86_64-pc-linux-gnu-library/2.15/lme4’
ERROR: dependencies ‘arm’, ‘car’, ‘lme4’ are not available for package ‘mi’
* removing ‘/home/vivek/R/x86_64-pc-linux-gnu-library/2.15/mi’
The downloaded source packages are in
‘/tmp/Rtmpu1TVD3/downloaded_packages’
I get the above error when I try to install package for Multiple Imputation in R. I have used following command to install the package on R console.
install.packages('mi')
Related
When I add the egui dependency and try to build the project it cannot resolve the dependency due to the following error:
➜ langcard git:(master) ✗ cargo build
Updating crates.io index
error: failed to select a version for the requirement `egui = "^0.19.0"`
candidate versions found which didn't match: 0.17.0, 0.16.1, 0.16.0, ...
location searched: crates.io index
required by package `langcard v0.1.0 (/Users/admin/Code/rust/langcard)`
Here's the package I am trying to build with:
https://crates.io/crates/egui
Any ideas?
I'm writing an NPM package that's going to support several databases. I'm working on a CLI at the moment that, passed a connection URI string, it will install the appropriate dialect for that database. e.g. if passed a URI that contains postgresql://... it will install the pg and pg-hstore packages with a command like npm install pg pg-hstore (or yarn depending on lock file).
I'm running into the issue where this will then install the package in the root projects package.json so now my package does not have access to the pg package.
How do I either:
A) get access to top-level packages that are NOT in my packages package.json
B) Have my package install the correct package for its own package.json
I'm trying to install the FirebaseDatabase.net package in my Xamarin.iOS project, but I get the following error message. Any thoughts?
Attempting to resolve dependencies for package 'FirebaseDatabase.net.3.0.2' with DependencyBehavior 'Lowest'
Circular dependency detected 'FirebaseDatabase.net 3.0.2 => System.Reactive 3.1.1 => System.Reactive.PlatformServices 4.0.0-preview00001 => System.Reactive 3.1.1'.
Actually managed to install the package by manually installing the System.Reactive.PlatformServices 4.0.0-preview00001 package first! The circular dependency is thus broken
cabal install hedis
This failed due to its dependency - bytestring-lexing not getting installed. The error message is,
bytestring-lexing-0.4.3.2 failed during the configure step. The exception was:
ExitFailure 1
hedis-0.6.5 depends on bytestring-lexing-0.4.3.2 which failed to install.
To reason why this package failed, I grep-ed for local installations of bytestring-lexing using this command,
ghc-pkg field bytestring-lexing depends
But there are no local packages,
ghc-pkg: cannot find package bytestring-lexing
Now it is not the version conflict, what else could cause this error?
The error message is simply indicating that it's not able to find the package bytestring-lexing. So try installing that package first:
cabal install bytestring-lexing
And then try again the installation of hedis.
I am new to Meteor and Telescope
I installed Meteor, NodeJs and Meteorite. cloned Telescope. when i run meteor from Telescope folder to start the Telescope Meteor project. i get following error
λ meteor
[[[[[ E:\Work\FutureHunt\Git\Telescope ]]]]]
=> Started proxy.
=> Started MongoDB.
rss: updating npm dependencies -- rss...
mailchimp: updating npm dependencies -- mailchimp...
=> Errors prevented startup:
While building the application:
error: no such package: 'crypto-md5'
error: no such package: 'momentjs'
error: no such package: 'iron-router'
error: no such package: 'fast-render'
error: no such package: 'spin'
error: no such package: 'autoform'
error: no such package: 'collection2'
error: no such package: 'jquery-hotkeys'
error: no such package: 'marked'
error: no such package: 'bootstrap3-datepicker'
error: no such package: 'subs-manager'
error: no such package: 'telescope-module-embedly'
While building package `telescope-tags`:
error: no such package: 'simple-schema'
error: no such package: 'iron-router'
While building package `telescope-search`:
error: no such package: 'simple-schema'
error: no such package: 'iron-router'
=> Your application has errors. Waiting for file change.
However. when i create a new project of meteor using "meteor create newproject" and run it. it works fine.
I am also using latest Telescope version. and meteor is in my PATH variable. i can't figure out the error.
According to this:
https://github.com/oortcloud/meteorite/issues/65#issuecomment-11428236
you need to manually copy the source for each of those packages into your telescope project directory.
Overall, I suspect it would be easier to do your Meteor development inside a virtual machine.