最近有個需求是經過c#代碼來啓動 python 腳本。嘿~嘿!!!
突發奇想~~既然能夠啓動 python 腳本,那也能啓動 flask,因而開始着手操做。
先看gif圖
html
由於使用的是.NET Core 3.1
來建立的控制檯程序,啓動flask web程序,因此須要下載dotnet-sdk-3.1
, 若是使用的是.Net Framework
直接運行便可,當前是生產環境下的啓動,若是是開發機,直接使用虛擬環境便可無需配置。
大部分客戶機系統安裝的都是純淨版本,每每缺乏一部分組件,因此咱們在純淨的環境下須要準備必備組件:
dotnet-sdk-3.1.100-win-x64.exepython
經過Process來啓動flask的server.pygit
cmd cd Desktop mkdir test cd test code . ctrl + j dotnet new console
using System; using System.Diagnostics; using System.IO; using System.Linq; namespace tes { class Program { private static string _basePath => AppDomain.CurrentDomain.BaseDirectory; private static string _srcPath => Path.Combine(_basePath, @"AnWorker\src"); private static string _venvPath => Path.Combine(_basePath, @"AnWorker\venv"); static void Main(string[] args) { // string fileName = Path.Combine(_venvPath, "Scripts", "python.exe"); // string arguements = Path.Combine(_srcPath, "server.py"); var workPath = Path.Combine(_venvPath, "Scripts"); var fileName = Path.Combine(workPath, "python.exe"); var arguements = Path.Combine(_srcPath, "server.py"); Console.WriteLine(fileName); Console.WriteLine(arguements); var psi = new ProcessStartInfo(fileName) { Arguments = arguements, WorkingDirectory = _venvPath, ErrorDialog = false, UseShellExecute = false }; var path = psi.EnvironmentVariables["PATH"]; if (path != null) { var arrayt = path.Split(new[] { ';' }).Where(p => !p.ToLower().Contains("python")).ToList(); arrayt.AddRange(new[] { _venvPath, Path.Combine(_venvPath, "Lib") }); psi.EnvironmentVariables["PATH"] = string.Join(";", arrayt); } Process.Start(psi); Console.ReadLine(); } } }
<div> <p style="text-align: center;font-size: smaller;float: left;"> <img src="https://img2018.cnblogs.com/blog/443660/202001/443660-20200106172343637-1037943087.png">圖1</img> </p> <p style="text-align: center;font-size: smaller;"> <img src="https://img2018.cnblogs.com/blog/443660/202001/443660-20200106172441492-1617846760.png">圖2</img> </p> <p style="clear: both;"></p> </div>github
AnWorker 是腳本網站的代碼,結構以下(看圖1圖2)web
闡述下本身的觀點,看官可能會問到幹嗎不直接F5,其不是更好,我想說:存在即合理
如今Python應用很廣,任何語言都有可能會使用到腳本開發。
這個時候,C# 調用Python 應運而生!安排~ [^_^]: >_<: testflask
原文出處:https://www.cnblogs.com/luquanmingren/p/12157479.htmlc#