Using homebrew I am able to install node v12, v14, v16 and v17. But it seems to only install the latest stable version of each.
I am using an M1 Mac - any ideas on how to install node version 14.18.2 using homebrew?
Instead of brew, you can use nvm to install and switch between different version of node.js on you Mac OSX :
https://github.com/nvm-sh/nvm
Related
Im new to programming and stuff and was looking to install python 3.9.6 using home-brew. To do that would I just have to type in brew install python#3.9 into the terminal, or is there some other way? Thanks!
You can't ensure a specific version 3.9.6 with brew package python#3.9. Homebrew is a package manage designed to get latest pacakge. python#3.9 will be kept updating to the latest patch version 3.9.x.
If you REALLY to stick with specific python version, choose conda (miniconda is preferred) or pyenv.
Am using ubuntu 20.04 LTS by default I have 3.8.2 as python version but when I issue sudo apt-get update its getting updating to 3.8.5 I need 3.8.2 as the version.How to uninstall 3.8.5 and install 3.8.2?
It might not directly answer your question, but it's an alternative solution. You could install something like pyenv which simplifies the process of handling different python versions. After installing it, pyenv install 3.8.2 && pyenv global 3.8.2 should do the trick.
$brew install apache-spark only installs the most recent version of spark (2.4) and $brew search apache-spark does not give any other options. Is there a way to install an older version of spark with homebrew?
Type
brew tap eddies/spark-tap
Then install the specific version
brew install apache-spark#2.3.3
brew tap eddies/spark-tap
brew install apache-spark#2.3.2
I am on Windows 7 and I need to have a newer specific version of node.js than one currently installed. What is the recommended approach: upgrade to newer specific version OR uninstall current version and then install the newer specific version?
Thanks
just use lastest LST from https://nodejs.org/en/ : 10.16.0 LST
I tried to install opencv for Python 3.6.5 on Mac OS. I tried brew install opencv, but it updates my python version to 3.7.
I tried brew pin python and then tried the installation but it just fails as it can't update the dependency.
Error: You must `brew unpin python` as installing opencv requires the latest version of pinned dependencies
I don't want to use pip install opencv-python as I read somewhere that it is not official.
Can someone help me out?