Error while installing azimuth in meteor project - meteor

After Installation of meteor and creation of meteor project I run the following command:
sudo meteor add azimuth-views-foundation
I get the following error, please suggest what am I missing:
=> Errors while parsing arguments:
While adding package azimuth-views-foundation: error: no such package

If you take a look into this search on Atmosphere Azimuth, there is not such package named azimuth-views-foundation
Try with meteor add mcrider:azimuth-views-foundation instead.

Related

Class 'Symfony\Component\EventDispatcher\Event' not found in Laravel/Lumen

When Trying to install Rackspace package (composer require rackspace/php-opencloud), getting the following error
Class 'Symfony\Component\EventDispatcher\Event' not found.
I have installed symfony package but that could not worked out.
Kindly help me out for this.
Try to install the required package
composer require symfony/event-dispatcher

Why do I get a syntax error in devtools::install_github?

I am new in working with linux. I am trying to analyse sequencing data using dropEst pipeline https://github.com/hms-dbmi/dropEst#dropreport. I want to run the DropReport and for that I need to install dropEstR package.
I tried by :
devtools::install_github('hms-dbmi/dropEst/dropestr' , dependencies = T)
as they suggest and I get as an error:
bash: syntax error near unexpected token
`'hms-dbmi/dropEst/dropestr','
Do you have any idea what should I do differently?
I think you are using the "wrong" shell. You have to use R/RStudio, when you want to use the devtools package. From CRAN:
Title Tools to Make Developing R Packages Easier
I just tried you command in RStudio but installation fails in the end:
ERROR: dependency 'Rcpp' is not available for package 'dropestr'
* removing 'C:/R/R-3.4.2/library/dropestr'
Installation failed: Command failed (1)
You have to run such script on RStudio for R. Import your project here and run it.
You can download it from enter link description here
Happy Coding.

Could not resolve the specified constraints for this project: Error: conflict: blaze#1.0.0 vs 2.0.0

I tried to upgrade my meteor app from 0.8something to 0.9.1.1 and now
Could not resolve the specified constraints for this project: Error:
conflict: blaze#1.0.0 vs 2.0.0
I'm not sure how to proceed. I try to run meteor list and meteor remove but no matter what meteor command I run I get this error.
The steps I did were
run meteor update
updated to Meteor 0.9.1.1.
run mrt migrate-app
got some errors
Error: The version 1.2.11 of package roles has not yet been migrated
Error: The version 1.2.0 of package accounts-meld has not yet been
migrated Error: The version 2.4.13 of package kadira has not yet been
migrated Error: The version 0.4.8 of package analytics has not yet
been migrated Error: The version 2.1.0.2 of package momentjs has not
yet been migrated Error: The version 1.0.2 of package subs-manager has
not yet been migrated
If you want to continue, remove the package(s) from smart.json, run
`mrt install`, and try again. After you have successfully migrated,
you can add them back but note: You will NOT receive further
updates!. See https://hackpad.com/Migrating-Apps-UfPrM192vSQ for more
information.
removed those packages from smart.json and ran mrt install. no errors
reran mrt migrate-app. This time no errors.
But now I can't do anything as I always get the error
meteor list
Figuring out the best package versions to use. This may take a moment.
Refreshing package metadata. This may take a moment.
Could not resolve the specified constraints for this project:
Error: conflict: blaze#1.0.0 vs 2.0.0
Please help troubleshoot. Thanks.
as I figured out here, perhaps you should try out:
remove all packages, update, add them all back, without the version suffix... pretty easy to do now that they are all single lines in the .meteor/packages file:
sed -e 's/^[a-zA-Z0-9]/meteor remove &/' .meteor/packages | sed 's/\#[0-9\.]*//g' > packages-rm.sh
sed -e 's/ remove / add /' packages-rm.sh > packages-add.sh
bash packages-rm.sh
meteor list # should be empty
meteor update
bash packages-add.sh
meteor list

meteor unknown package (0.9.0)

I just updated my meteor application to meteor version 0.9.0
All seems to work well. The problem however now is that when I do a fresh checkout of my project and try to run it I get errors like this:
% meteor
Figuring out the best package versions to use. This may take a moment.
Could not resolve the specified constraints for this project:
Error: unknown package: subs-manager
So I tried to install the packages as follows:
% meteor add subs-manager
Figuring out the best package versions to use. This may take a moment.
Could not resolve the specified constraints for this project:
Error: unknown package: subs-manager
and next I tried:
% mrt install subs-manager
Done installing smart packages
But when I try to run meteor again I get the exact same error message. Any suggestions what goes wrong here ?
You need to migrate your package names:
meteor remove subs-manager
meteor add meteorhacks:subs-manager
You can check out the names by searching atmosphere, which I think uses the new naming system now or using meteor search e.g meteor search subsmanager

momentjs not working with meteor

I want to use this package
I ran mrt add bootstrap3-datetimepicker in my Meteor project.
Next I run mrt install moment and mrt update moment as the instructions tells me.
When I now do mrt run I get the following error:
=> Errors prevented startup:
While building the application:
error: no such package: 'moment'
Why am I getting this?
And if I type mrt add moment I get this:
/usr/local/lib/node_modules/meteorite/lib/meteor.js:154
throw "Error running a command: " + error;
^
Error running a command: Error: Command failed: => Errors while scanning packages:
While building package `bootstrap3-datetimepicker`:
error: no such package: 'moment'
For anyone coming across this issue now, moment.js officially supports Meteor:
meteor add momentjs:moment
ref

Resources