УНИТе

Портал > Документация > Инсталиране и използване на Julia под CentOS 7

Инсталиране и използване на Julia под CentOS 7

Съдържание:

  1. Предварителна информация
  2. Инсталиране на пакетите
  3. Използване на Julia

 

1. Предварителна информация

Julia е модерен език, който се използва предимно за числени пресмятания (числени методи), анализ на данни (свързани с BigData), а също така и използване на свързан бинарен външен код (модуларизация).

 

2. Инсталиране на пакетите

Първо се инсталира пакета с хранилищни настройки за EPEL (ако вече не е инсталиран):

$ sudo yum install epel-release

и след това се създава хранилищния файл, на база на който ще бъдат изтегляни пакетите от хранилището на Julia:

$ sudo yum-config-manager --add-repo https://copr.fedorainfracloud.org/coprs/nalimilan/julia/repo/epel-7/nalimilan-julia-epel-7.repo

Инсталирането на Julia става лесно:

$ sudo yum install julia

 

3. Използване на Julia

               _
   _       _ _(_)_     |  Documentation: https://docs.julialang.org
  (_)     | (_) (_)    |
   _ _   _| |_  __ _   |  Type "?" for help, "]?" for Pkg help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 1.2.0 (2019-08-20)
 _/ |\__'_|_|_|\__'_|  |  nalimilan/julia Copr build
|__/                   |

julia>

След като сте инсталирали Go по начина, описан по-горе, може да активирате използването му по следния начин:

$ scl enable go-toolset-7 bash

За да проверите, че Go е зареждаем в новата сесия на bash, изпълнете:

$ go

и проверете дали получавате като резултат сумаризация на опциите, с който може да извикате Go:

Go is a tool for managing Go source code.

Usage:

	go command [arguments]

The commands are:

	build       compile packages and dependencies
	clean       remove object files and cached files
	doc         show documentation for package or symbol
	env         print Go environment information
	bug         start a bug report
	fix         update packages to use new APIs
	fmt         gofmt (reformat) package sources
	generate    generate Go files by processing source
	get         download and install packages and dependencies
	install     compile and install packages and dependencies
	list        list packages
	run         compile and run Go program
	test        test packages
	tool        run specified go tool
	version     print Go version
	vet         report likely mistakes in packages

Use "go help [command]" for more information about a command.

Additional help topics:

	c           calling between Go and C
	buildmode   build modes
	cache       build and test caching
	filetype    file types
	gopath      GOPATH environment variable
	environment environment variables
	importpath  import path syntax
	packages    package lists
	testflag    testing flags
	testfunc    testing functions

Use "go help [topic]" for more information about that topic.

 


Последна актуализация: 5 септември 2019

2019 УНИТе, Веселин Колев