Microsoft MVP성태의 닷넷 이야기
개발 환경 구성: 676. WSL/Linux Octave - Python 스크립트 연동 [링크 복사], [링크+제목 복사]
조회: 3888
글쓴 사람
정성태 (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

비밀번호

댓글 작성자
 




[1]  2  3  4  5  6  7  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13609정성태4/27/202439닷넷: 2250. PInvoke 호출 시 참조 타입(class)을 마샬링하는 [IN], [OUT] 특성파일 다운로드1
13608정성태4/26/2024423닷넷: 2249. C# - 부모의 필드/프로퍼티에 대해 서로 다른 자식 클래스 간에 Reflection 접근이 동작할까요?파일 다운로드1
13607정성태4/25/2024420닷넷: 2248. C# - 인터페이스 타입의 다중 포인터를 인자로 갖는 C/C++ 함수 연동
13606정성태4/24/2024450닷넷: 2247. C# - tensorflow 연동 (MNIST 예제)파일 다운로드1
13605정성태4/23/2024698닷넷: 2246. C# - Python.NET을 이용한 파이썬 소스코드 연동파일 다운로드1
13604정성태4/22/2024729오류 유형: 901. Visual Studio - Unable to set the next statement. Set next statement cannot be used in '[Exception]' call stack frames.
13603정성태4/21/2024884닷넷: 2245. C# - IronPython을 이용한 파이썬 소스코드 연동파일 다운로드1
13602정성태4/20/2024942닷넷: 2244. C# - PCM 오디오 데이터를 연속(Streaming) 재생 (Windows Multimedia)파일 다운로드1
13601정성태4/19/2024971닷넷: 2243. C# - PCM 사운드 재생(NAudio)파일 다운로드1
13600정성태4/18/2024981닷넷: 2242. C# - 관리 스레드와 비관리 스레드
13599정성태4/17/2024938닷넷: 2241. C# - WAV 파일의 PCM 사운드 재생(Windows Multimedia)파일 다운로드1
13598정성태4/16/2024980닷넷: 2240. C# - WAV 파일 포맷 + LIST 헤더파일 다운로드2
13597정성태4/15/2024975닷넷: 2239. C# - WAV 파일의 PCM 데이터 생성 및 출력파일 다운로드1
13596정성태4/14/20241080닷넷: 2238. C# - WAV 기본 파일 포맷파일 다운로드1
13595정성태4/13/20241070닷넷: 2237. C# - Audio 장치 열기 (Windows Multimedia, NAudio)파일 다운로드1
13594정성태4/12/20241085닷넷: 2236. C# - Audio 장치 열람 (Windows Multimedia, NAudio)파일 다운로드1
13593정성태4/8/20241091닷넷: 2235. MSBuild - AccelerateBuildsInVisualStudio 옵션
13592정성태4/2/20241227C/C++: 165. CLion으로 만든 Rust Win32 DLL을 C#과 연동
13591정성태4/2/20241203닷넷: 2234. C# - WPF 응용 프로그램에 Blazor App 통합파일 다운로드1
13590정성태3/31/20241084Linux: 70. Python - uwsgi 응용 프로그램이 k8s 환경에서 OOM 발생하는 문제
13589정성태3/29/20241158닷넷: 2233. C# - 프로세스 CPU 사용량을 나타내는 성능 카운터와 Win32 API파일 다운로드1
13588정성태3/28/20241277닷넷: 2232. C# - Unity + 닷넷 App(WinForms/WPF) 간의 Named Pipe 통신 [2]파일 다운로드1
13587정성태3/27/20241361오류 유형: 900. Windows Update 오류 - 8024402C, 80070643
13586정성태3/27/20241537Windows: 263. Windows - 복구 파티션(Recovery Partition) 용량을 늘리는 방법
13585정성태3/26/20241498Windows: 262. PerformanceCounter의 InstanceName에 pid를 추가한 "Process V2"
[1]  2  3  4  5  6  7  8  9  10  11  12  13  14  15  ...