Running sudo apt-get command on Windows

I try to install the Feedzirra gem, and I run into a problem when it says that Curl cannot be installed (it gives the error message "using native extensions ..."). I found a solution for it here for Ubuntu, but the problem is that the solution assumes that I run the line sudo apt-get install libcurl3-dev , which, as far as I know, is for the Unix terminal. What is the equivalent command that I can run for Windows?

+3
source share
3 answers

Equivalent in Windows or the command will download the file via ftp and run the installer (.exe or .msi). Make sure that the program you are trying to download and run has a program equivalent to Windows, unlike the Unix / Linux shell

+1
source

sudo apt-get install libcurl3-dev, which, as far as I know, is a string for a Unix terminal. What is the equivalent command that I can work with Windows for this?

If you are looking for something similar, like "apt-get", you can look at wuinstall . it is designed to manage Windows updates through the command line, although this may not be applicable to your specific case with third-party software.

+1
source

Install chocolatey on your cmd and run it with this choco install (pkg) command

For example: choco install nano

0
source

Source: https://habr.com/ru/post/1391441/


All Articles