Qn: O apt (no Mac) é o mesmo que o apt-get?

0

Sou um pouco novo nisso, então me perdoe.

Estou seguindo um livro que exige que eu faça o "sudo apt-get install ..." em um sistema operacional Ubuntu, mas eu só tenho um Mac. Encontrei um executável UNIX no meu Mac instalado por padrão chamado "apt". Eu suponho que "apt" foi o mesmo que "apt-get", mas quando eu digitei os comandos relevantes eu recebo:

-bash: apt-get: command not found

OR (quando divido "apt" e "-get" com um espaço)

apt: invalid flag: -get
Usage: apt <apt and javac options> <source files>
where apt options include:
  -classpath <path>          Specify where to find user class files and annotation processor factories
  -cp <path>                 Specify where to find user class files and annotation processor factories
  -d <path>                  Specify where to place processor and javac generated class files
  -s <path>                  Specify where to place processor generated source files
  -source <release>          Provide source compatibility with specified release
  -version                   Version information
  -help                      Print a synopsis of standard options; use javac -help for more options
  -X                         Print a synopsis of nonstandard options
  -J<flag>                   Pass <flag> directly to the runtime system
  -A[key[=value]]            Options to pass to annotation processors
  -nocompile                 Do not compile source files to class files
  -print                     Print out textual representation of specified types
  -factorypath <path>        Specify where to find annotation processor factories
  -factory <class>           Name of AnnotationProcessorFactory to use; bypasses default discovery process
See javac -help for information on javac options.

O apt e o apt-get são a mesma coisa?

Estou tentando instalar o python3-minimal e outras ferramentas forenses digitais.

P.S. Esta questão se refere a: Qual é o equivalente a O comando apt-get do Ubuntu em um Mac e Qual é a diferença entre o Linux (Ubuntu) e os comandos shell do Mac? , mas esses posts não lidam diretamente com o fato de que há um executável UNIX apt no Mac.

    
por humanitiesclinic 26.05.2013 / 05:06

1 resposta

1

Eles são dois comandos não relacionados. Se você executar man apt no seu Mac, parece ser uma ferramenta para o desenvolvimento em Java. Na página man :

DESCRIPTION

The tool apt, annotation processing tool, includes a set of new reflective APIs and supporting infrastructure to process program annotations. The apt reflective APIs provide a build-time, source-based, read-only view of program structure. These reflective APIs are designed to cleanly model the JavaTM programming language's type system after the addition of generics.

man , no entanto, é a mesma ferramenta em ambas as plataformas, por isso é um recurso útil, independentemente do seu nível de conhecimento. A execução de man <command> exibirá a ajuda associada a esse comando.

    
por 26.05.2013 / 05:25