After update compose to 1.3.2 everything not working - android-studio

problems screenshot
update prompt
works fine if I'll rollback to 1.3.1

Problem was solved by upgrading to 1.4.0-alpha03 instead of 1.3.2

Related

Installing different Node version in wsl 2

I am trying to update my Nodejs to the latest version in WSL 2. My old version is v15.0.0 and is installed at active : v15.0.0 at /home/sathish/.nvm/versions/node/v15.0.0/bin/node
My new version installed : v18.1.0 to /usr/local/bin/node
My shell is using the old one. I don't know how to make my shell to use the new version. What should I do to make my shell use the new version installed at a different location?
You need to run
nvm use <your version>
Read more here: https://blog.logrocket.com/switching-between-node-versions-during-development/
the simplest solution
you should install nvm then using that install the latest version of node then
change the default to the newest version
https://www.codegrepper.com/code-examples/whatever/set+default+node+version+ubuntu+nvm
I just uninstalled all versions and then reinstalled. It works now. Thanks for the answer.

I get an error when using composer with fabic 1.2

I am currently trying to work through this tutorial here
When I try and run the createPeerAdminCard.sh script, i get the error Cannot use Composer version 1.8.3 2019-01-30 08:31:33 version of composer with fabric 1.2, v0.20 or higher is required
I have looked and it seems composer version 1.8.3 is the latest release, I just upgraded from 1.6.x and was getting the same error with that version of composer.
I have checked all of the prerequisites for installing composer here and I seem to have all the right versions (Prerequisites)
A similar post is here but running the suggested npm install -g composer-cli#0.x.x did not seem to fix the issue.
Any suggestions would be appreciated
Use composer v0.20. I hope that will solve your issue.Hope it help.

'node -v' shows wrong version after 'choco upgrade nodejs'

After upgrading node using chocolatey I type in the command node -v and it returns the wrong version number. Some one solved the same issue with homebrew here using an override command.
How can I solve this problem using chocolatey?
Start by making sure you restart bash. I've seen the versions not update in the same window I used to install the new version. If that doesn't do it then I would also remove the old version of node.
The where node command is helpful for finding that pesky old version.

How do I know which version of node.js I am currently running?

I remember I have upgraded to node.js v8.0.0.
And when I type node --version I see version number is v8.0.0.
However when I use which node on my OS X I see the path is /usr/local/Cellar/node/7.7.1/bin/node. Why would that happen? Am I using v8.0.0?
How did you install node?
Seems like you have used brew to install node in the past, but then upgraded in some other way.
In any case, you should trust the node --version, since this is node itself reporting.
If still in doubt, I would remove and reinstall.
Sounds like you have installed one version with Homebrew and one by normal installer?
Depending on your setup you can either remove the 7x version from Homebrew, or update and link to the correct version in Homebrew.
https://github.com/Homebrew/brew/blob/master/docs/FAQ.md#can-i-install-my-own-stuff-to-usrlocal

Upgrading to latest nodejs from nodejs 0.8 using npm command

I was trying to install nodejs using the node-v0.10.25-x86.msi windows installer but getting the following error
I was able to install node.js 0.8 version, is there any way to upgrade to latest version
i have a similar issue. Try installing this one
http://nodejs.org/docs/v0.8.0/
It solved my problem. It is very stable version.

Resources