본문 바로가기
IT/mendix

m2ee-tools 설치하기

by 가능성1g 2024. 6. 20.
반응형

1. vmware 이용 : debian12 설치

완료

apt update 로 최신 패키지 업데이트!

 

2. m2ee tools 설치

참고페이지

m2ee-tools/doc/install-1.md at master · mendix/m2ee-tools · GitHub

 

m2ee-tools/doc/install-1.md at master · mendix/m2ee-tools

m2ee, the Mendix runtime helper tools for GNU/Linux - mendix/m2ee-tools

github.com

 

# 소스리포지터리 추가

sudo vi /etc/apt/sources.list

.. 마지막 줄

deb http://packages.mendix.com/platform/debian/ bookworm main contrib non-free

 

# root 로 m2ee 설치

wget -q -O - https://packages.mendix.com/mendix-debian-archive-key.asc | apt-key add -
apt-get update
apt-get install debian-mendix-archive-keyring
apt-get install m2ee-tools

 

# 실행 확인

m2ee --help

 

## 수동으로 설치하기

 

# git 설치

sudo apt install git

 

# python3-pip 설치

sudo apt install python3-pip

 

# 가상환경 설정

mkdir m2ee-tools

cd m2ee-tools

sudo apt install python3.11-venv

. .venv/bin/activate

 

# 필수패키지 설치

pip install PyYAML

pip install requests

 

# git clone

git clone https://github.com/mendix/m2ee-tools.git

 

# 실행

cd m2ee-tools

cd src/m2ee

python m2ee.py --help

동일하게 실행되는것으로 추정됨!

반응형