Microsoft MVP성태의 닷넷 이야기
개발 환경 구성: 676. WSL/Linux Octave - Python 스크립트 연동 [링크 복사], [링크+제목 복사],
조회: 11638
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

(시리즈 글이 7개 있습니다.)
개발 환경 구성: 335. Octave의 명령 창에서 실행한 결과를 복사하는 방법
; https://www.sysnet.pe.kr/2/0/11309

개발 환경 구성: 388. Windows 환경에서 Octave 패키지 설치하는 방법
; https://www.sysnet.pe.kr/2/0/11622

개발 환경 구성: 674. WSL 2 환경에서 GNU Octave 설치
; https://www.sysnet.pe.kr/2/0/13319

개발 환경 구성: 675. Windows Octave 8.1.0 - Python 스크립트 연동
; https://www.sysnet.pe.kr/2/0/13320

개발 환경 구성: 676. WSL/Linux Octave - Python 스크립트 연동
; https://www.sysnet.pe.kr/2/0/13321

개발 환경 구성: 677. Octave에서 Excel read/write를 위한 io 패키지 설치
; https://www.sysnet.pe.kr/2/0/13323

.NET Framework: 2108. C# - Octave의 "save -binary ..."로 생성한 바이너리 파일 분석
; https://www.sysnet.pe.kr/2/0/13324




WSL/Linux Octave - Python 스크립트 연동

지난 글에서 8.1.0 버전의 윈도우 버전 Octave로 Python 연동을 해봤는데요,

Windows Octave 8.1.0 - Python 스크립트 연동
; https://www.sysnet.pe.kr/2/0/13320

아쉽게도 (2023-04-14 기준) 리눅스 환경인 경우에는 7.1.0 버전으로만 설치가 됩니다.

WSL 2 환경에서 GNU Octave 설치
; https://www.sysnet.pe.kr/2/0/13319

그리고 해당 버전의 Octave에서는 python 명령어가 실행되지 않습니다.

>> python('test.py')
sh: 1: python: not found
ans =

재미있는 건, 윈도와 마찬가지로 './usr/bin' 디렉터리에 파이썬 모듈이 있긴 합니다.

$ ll /snap/octave/306/usr/bin/py*
-rwxr-xr-x 1 root root    7815 Apr 21  2022 /snap/octave/306/usr/bin/py3clean*
-rwxr-xr-x 1 root root   12122 Apr 21  2022 /snap/octave/306/usr/bin/py3compile*
lrwxrwxrwx 1 root root      31 Oct 25  2018 /snap/octave/306/usr/bin/py3versions -> ../share/python3/py3versions.py*
lrwxrwxrwx 1 root root       8 Oct 25  2018 /snap/octave/306/usr/bin/pydoc3 -> pydoc3.6*
-rwxr-xr-x 1 root root      82 Apr 21  2022 /snap/octave/306/usr/bin/pydoc3.6*
lrwxrwxrwx 1 root root      12 Oct 25  2018 /snap/octave/306/usr/bin/pygettext3 -> pygettext3.6*
-rwxr-xr-x 1 root root   21547 Mar 15  2022 /snap/octave/306/usr/bin/pygettext3.6*
lrwxrwxrwx 1 root root       9 Oct 25  2018 /snap/octave/306/usr/bin/python3 -> python3.6*
-rwxr-xr-x 2 root root 4526456 Mar 15  2022 /snap/octave/306/usr/bin/python3.6*
-rwxr-xr-x 2 root root 4526456 Mar 15  2022 /snap/octave/306/usr/bin/python3.6m*
lrwxrwxrwx 1 root root      10 Oct 25  2018 /snap/octave/306/usr/bin/python3m -> python3.6m*
lrwxrwxrwx 1 root root      10 Oct 25  2018 /snap/octave/306/usr/bin/pyvenv -> pyvenv-3.6*
-rwxr-xr-x 1 root root     439 Apr 21  2022 /snap/octave/306/usr/bin/pyvenv-3.6*

그런데 저걸 못 찾고 있는 건데요, 혹시나 싶어, system 명령어로 bash를 실행했더니,

>> system('bash')
bash: cannot set terminal process group (1278): Inappropriate ioctl for device
bash: no job control in this shell
To run a command as administrator (user "root"), use "sudo <command>".
See "man sudo_root" for details.

$ which python3
/snap/octave/306/usr/bin/python3

$ which python
$ // 찾을 수 없어 출력이 없음

아마도 Octave의 python 명령어는 "python3"로 실행하지 않고 "python"으로만 실행하기 때문으로 보입니다. 여기서 문제는, 윈도우처럼 외부 python을 연결할 방법이 없다는 것입니다.

당연히 PYTHON 환경 변수는 안 통하고,

>> setenv PYTHON /usr/bin/python3
>> python
sh: 1: python: not found
ans =

더욱 문제는, PATH 환경 변수에는 아래와 같이 /snap 하위뿐만 아니라 /usr 디렉터리의 경로도 매핑돼 있지만,

// Octave system('bash') 환경

$ echo $PATH /snap/octave/306/usr/sbin:/snap/octave/306/usr/bin:/snap/octave/306/sbin:/snap/octave/306/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/octave/306/libexec/octave/7.1.0/site/exec/x86_64-pc-linux-gnu:/snap/octave/306/libexec/octave/api-v57/site/exec/x86_64-pc-linux-gnu:/snap/octave/306/libexec/octave/site/exec/x86_64-pc-linux-gnu:/snap/octave/306/libexec/octave/7.1.0/exec/x86_64-pc-linux-gnu:/snap/octave/306/bin


(존재하는) /usr/bin/python을 찾지 못한다는 점입니다. 분명히 Octave 안에서의 환경은 snap으로 영향을 받은 것 같고, 제가 snap에 대해 잘은 모르겠지만 아마도 파일 시스템을 가상화하는 것이 아닌가 싶습니다. (여기에 대해 잘 아시는 분은 덧글 부탁드립니다.)

실제로 아래는 Octave의 System('bash') 내에서 확인한 /usr/bin과 Ubuntu WSL Shell 내에서 확인한 /usr/bin의 다른 모습을 보여줍니다.

python_run_on_octave_1.png




어쨌든 문제를 해결하기 위해, Octave의 python 명령어가 잘 동작하도록 python3으로의 소프트 링크된 python을 만들어주면 될 텐데요, 그런데 이게 방법이 매우 제한적입니다.

우선, apt 명령어도 안 되고,

// Octave system('bash') 환경

$ sudo apt install python-is-python3
sudo: unable to set runas group vector: Operation not permitted
sudo: unable to set runas group vector: Operation not permitted
sudo: no tty present and no askpass program specified
sudo: unable to open audit system: Operation not permitted
sudo: unable to open audit system: Operation not permitted

python3.6이 있는 /snap/octave/306/usr/bin에서 python 링크를 만드는 것도 안 됩니다.

// Octave system('bash') 환경

/snap/octave/306/usr/bin$ ln -s python3.6 python
ln: failed to create symbolic link 'python': Read-only file system

그런데, 이거저거 하다 보니 /snap/octave/306 디렉터리는 read-only 제약이 없었는데요, 따라서 python3.6에 대한 소프트 링크를 추가할 수 있습니다.

$ cd /home/testusr/snap/octave/306

~/snap/octave/306$ ln -s /snap/octave/306/usr/bin/python3.6 python

~/snap/octave/306$ ll
total 28
drwxr-xr-x 2 testusr testusr 4096 Apr 12 09:30 ./
drwxr-xr-x 5 testusr testusr 4096 Apr 12 09:29 ../
...[생략]...
lrwxrwxrwx 1 testusr testusr   34 Apr 12 09:30 python -> /snap/octave/306/usr/bin/python3.6*

그다음, Octave 환경 내에서 저 링크를 찾을 수 있도록 setenv 명령을 수행합니다.

# ~/.octaverc 파일에 아래의 스크립트를 넣어두는 것도 좋겠습니다.

>> old_path = getenv('PATH')
>> new_path = ['/home/testusr/snap/octave/306:', old_path]

>> setenv('PATH', new_path)

자, 그럼 이제부터는 python이 잘 실행됩니다. ^^

>> system('cat test.py')
import sys

print(sys.version)

ans = 0
>> python test.py
ans = 3.6.9 (default, Mar 15 2022, 13:55:28)
[GCC 8.4.0]




저런 작업을 하고 싶지 않다면 system 명령어를 경유해 실행하는 것도 가능합니다.

// 아래에서 실행한 python3.6은 사용자의 /usr/bin에 있는 것이 아니고, 
// Octave와 함께 설치된 /home/testusr/snap/octave/306/usr/bin의 것이 실행됩니다.

>> [status, output] = system('/usr/bin/python3.6 test.py')
ans = 3.6.9 (default, Mar 15 2022, 13:55:28)
[GCC 8.4.0]




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 4/14/2023]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... [61]  62  63  64  65  66  67  68  69  70  71  72  73  74  75  ...
NoWriterDateCnt.TitleFile(s)
12412정성태11/16/202020679.NET Framework: 969. .NET Framework 및 .NET 5 - UnmanagedCallersOnly 특성 사용파일 다운로드1
12411정성태11/12/202017445오류 유형: 680. C# 9.0 - Error CS8889 The target runtime doesn't support extensible or runtime-environment default calling conventions.
12410정성태11/12/202017605디버깅 기술: 174. windbg - System.TypeLoadException 예외 분석 사례
12409정성태11/12/202019439.NET Framework: 968. C# 9.0의 Function pointer를 이용한 함수 주소 구하는 방법파일 다운로드1
12408정성태11/9/202034690도서: 시작하세요! C# 9.0 프로그래밍 [8]
12407정성태11/9/202019797.NET Framework: 967. "clr!JIT_DbgIsJustMyCode" 호출이 뭘까요?
12406정성태11/8/202020778.NET Framework: 966. C# 9.0 - (15) 최상위 문(Top-level statements) [5]파일 다운로드1
12405정성태11/8/202018655.NET Framework: 965. C# 9.0 - (14) 부분 메서드에 대한 새로운 기능(New features for partial methods)파일 다운로드1
12404정성태11/7/202019282.NET Framework: 964. C# 9.0 - (13) 모듈 이니셜라이저(Module initializers)파일 다운로드1
12403정성태11/7/202018179.NET Framework: 963. C# 9.0 - (12) foreach 루프에 대한 GetEnumerator 확장 메서드 지원(Extension GetEnumerator)파일 다운로드1
12402정성태11/7/202019697.NET Framework: 962. C# 9.0 - (11) 공변 반환 형식(Covariant return types) [1]파일 다운로드1
12401정성태11/5/202018943VS.NET IDE: 153. 닷넷 응용 프로그램에서의 "My Code" 범위와 "Enable Just My Code"의 역할 [1]
12400정성태11/5/202015157오류 유형: 679. Visual Studio - "Source Not Found" 창에 "Decompile source code" 링크가 없는 경우
12399정성태11/5/202018669.NET Framework: 961. C# 9.0 - (10) 대상으로 형식화된 조건식(Target-typed conditional expressions)파일 다운로드1
12398정성태11/4/202018210오류 유형: 678. Windows Server 2008 R2 환경에서 Powershell을 psexec로 원격 실행할 때 hang이 발생하는 문제
12397정성태11/4/202018236.NET Framework: 960. C# - 조건 연산자(?:)를 사용하는 경우 달라지는 메서드 선택 사례파일 다운로드1
12396정성태11/3/202015234VS.NET IDE: 152. Visual Studio - "Tools" / "External Tools..."에 등록된 외부 명령어에 대한 단축키 설정 방법
12395정성태11/3/202018033오류 유형: 677. SSMS로 DB 접근 시 The server principal "..." is not able to access the database "..." under the current security context.
12394정성태11/3/202015656오류 유형: 676. cacls - The Recycle Bin on ... is corrupted. Do you want to empty the Recycle Bin for this drive?
12393정성태11/3/202015319오류 유형: 675. Visual Studio - 닷넷 응용 프로그램 디버깅 시 Disassembly 창에서 BP 설정할 때 "Error while processing breakpoint." 오류
12392정성태11/2/202019844.NET Framework: 959. C# 9.0 - (9) 레코드(Records) [4]파일 다운로드1
12390정성태11/1/202019498디버깅 기술: 173. windbg - System.Configuration.ConfigurationErrorsException 예외 분석 방법
12389정성태11/1/202018661.NET Framework: 958. C# 9.0 - (8) 정적 익명 함수 (static anonymous functions)파일 다운로드1
12388정성태10/29/202017705오류 유형: 674. 어느 순간부터 닷넷 응용 프로그램 실행 시 System.Configuration.ConfigurationErrorsException 예외가 발생한다면?
12387정성태10/28/202018499.NET Framework: 957. C# - static 필드의 정보가 GC Heap에 저장될까요? [3]파일 다운로드1
12386정성태10/28/202019227Linux: 34. 사용자 정보를 함께 출력하는 리눅스의 ps 명령어 사용 방법
... [61]  62  63  64  65  66  67  68  69  70  71  72  73  74  75  ...