Skip to content

Latest commit

 

History

History
53 lines (39 loc) · 842 Bytes

Installing_C++_Agent_on_Fedora.md

File metadata and controls

53 lines (39 loc) · 842 Bytes
title description published date tags editor dateCreated
Installing C++ Agent on Fedora Alpine
true
2022-06-01 14:01:54 UTC
markdown
2022-06-01 14:01:54 UTC

Overview

Installation procedure for running MTConnect Agent on Fedora Alpine.

Building on Fedora Alpine

As Root

	apk add g++ python3 cmake git linux-headers make perl ruby
	gem install rake
	
	python3 -m ensurepip
	python3 -m pip install --upgrade pip

As the user

	export PATH=~/.local/bin:$PATH
	pip3 install conan	
	git clone https://github.com/mtconnect/cppagent.git

Export mqtt_cpp package

	cd cppagent
	conan export conan/mqtt_cpp/
	conan export conan/mruby/

Install packages

conan install . -if build -pr conan/profiles/gcc --build=missing

Build the agent

	conan build . -bf build