-1
有人可以請提供關於如何構建Linux(Ubuntu)IronPython的步驟。我不能在https://github.com/IronLanguages/main/wiki/Building建立文檔中提到的情況我也不能建立在當前回購:https://github.com/IronLanguages/ironpython2.gitLinux的實例Ironpython
有人可以請提供關於如何構建Linux(Ubuntu)IronPython的步驟。我不能在https://github.com/IronLanguages/main/wiki/Building建立文檔中提到的情況我也不能建立在當前回購:https://github.com/IronLanguages/ironpython2.gitLinux的實例Ironpython
通過各種文件和GitHub的構建文件,我能夠以起草工作的解決方案細算。步驟如下。
git clone https://github.com/IronLanguages/ironpython2.git
cd ironpython2/
dotnet restore IronPython.sln --packages ./packages
Make
- >檢查bin/Release/net40 for ipy.exe
測試其運行mono ipy.exe
否則msbuild /p:Configuration=Release IronPython.sln /t:Clean,Build
- >再次檢查
運行mono bin/Release/net40/IronPythonTest.exe
創建符號鏈接nano ipy
#!/bin/sh
EXE_PATH=YOUR_PATH
mono $EXE_PATH/ipy.exe 「[email protected]」
將YOUR_PATH替換爲絕對路徑,例如。
使腳本可執行chmod +x ipy
copy ipy to /usr/local/bin/
在命令行中鍵入IPY IronPython的解釋應該拿出。
你可以澄清,如果你想建立或只是使用/執行/安裝IronPython在Linux上(單聲道?)? –
(對不起,因爲我旅行)我希望能夠執行通過單聲道命令行執行IronPython腳本。 – TST