Microsoft MVP성태의 닷넷 이야기
개발 환경 구성: 676. WSL/Linux Octave - Python 스크립트 연동 [링크 복사], [링크+제목 복사],
조회: 4198
글쓴 사람
정성태 (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)
13630정성태5/19/2024218닷넷: 2263. C# - Thread가 Task보다 더 빠르다는 어떤 예제(?)
13629정성태5/18/2024249개발 환경 구성: 710. Android - adb.exe를 이용한 파일 전송
13628정성태5/17/2024232개발 환경 구성: 709. Windows - WHPX(Windows Hypervisor Platform)를 이용한 Android Emulator 가속
13627정성태5/17/2024229오류 유형: 903. 파이썬 - UnicodeEncodeError: 'ascii' codec can't encode character '...' in position ...: ordinal not in range(128)
13626정성태5/15/2024324Phone: 15. C# MAUI - MediaElement Source 경로 지정 방법파일 다운로드1
13625정성태5/14/2024675닷넷: 2262. C# - Exception Filter 조건(when)을 갖는 catch 절의 IL 구조
13624정성태5/12/2024912Phone: 14. C# - MAUI에서 MediaElement 사용파일 다운로드1
13623정성태5/11/2024996닷넷: 2261. C# - 구글 OAuth의 JWT (JSON Web Tokens) 해석파일 다운로드1
13622정성태5/10/20241029닷넷: 2260. C# - Google 로그인 연동 (ASP.NET 예제)파일 다운로드1
13621정성태5/10/2024973오류 유형: 902. IISExpress - Failed to register URL "..." for site "..." application "/". Error description: Cannot create a file when that file already exists. (0x800700b7)
13620정성태5/9/20241045VS.NET IDE: 190. Visual Studio가 node.exe를 경유해 Edge.exe를 띄우는 경우
13619정성태5/7/2024992닷넷: 2259. C# - decimal 저장소의 비트 구조파일 다운로드1
13618정성태5/6/20241110닷넷: 2258. C# - double (배정도 실수) 저장소의 비트 구조파일 다운로드1
13617정성태5/5/20241057닷넷: 2257. C# - float (단정도 실수) 저장소의 비트 구조파일 다운로드1
13616정성태5/3/2024993닷넷: 2256. ASP.NET Core 웹 사이트의 HTTP/HTTPS + Dual mode Socket (IPv4/IPv6) 지원 방법파일 다운로드1
13615정성태5/3/2024951닷넷: 2255. C# 배열을 Numpy ndarray 배열과 상호 변환
13614정성태5/2/2024911닷넷: 2254. C# - COM 인터페이스의 상속 시 중복으로 메서드를 선언
13613정성태5/1/2024934닷넷: 2253. C# - Video Capture 장치(Camera) 열거 및 지원 포맷 조회파일 다운로드1
13612정성태4/30/2024938오류 유형: 902. Visual Studio - error MSB3021: Unable to copy file
13611정성태4/29/2024940닷넷: 2252. C# - GUID 타입 전용의 UnmanagedType.LPStruct - 두 번째 이야기파일 다운로드1
13610정성태4/28/20241012닷넷: 2251. C# - 제네릭 인자를 가진 타입을 생성하는 방법 - 두 번째 이야기
13609정성태4/27/20241050닷넷: 2250. PInvoke 호출 시 참조 타입(class)을 마샬링하는 [IN], [OUT] 특성파일 다운로드1
13608정성태4/26/20241128닷넷: 2249. C# - 부모의 필드/프로퍼티에 대해 서로 다른 자식 클래스 간에 Reflection 접근이 동작할까요?파일 다운로드1
13607정성태4/25/20241143닷넷: 2248. C# - 인터페이스 타입의 다중 포인터를 인자로 갖는 C/C++ 함수 연동
13606정성태4/24/20241099닷넷: 2247. C# - tensorflow 연동 (MNIST 예제)파일 다운로드1
[1]  2  3  4  5  6  7  8  9  10  11  12  13  14  15  ...