C # ArcMap bir eklenti ile çalışıyorum. C # kodu, bazı Python komut dosyaları yürüttüm. Şimdi, bu komut dosyasını çalıştırmak için sabit kodlu python yolum var. Ancak bu taşınabilir değildir. Yani, koddan yürütülebilir Python yolunu almak ve kullanmak istiyorum.
Soru:
ArcMap tarafından kullanılan Python yürütülebilir dosyasının yolunu C # kodundan nasıl alabilirim?
DÜZENLE :
Önerilerinizden, şimdilik Python yolu almak için "yol ortamı" kullanıyorum.
//get python path from environtment variable
string GetPythonPath()
{
IDictionary environmentVariables = Environment.GetEnvironmentVariables();
string pathVariable = environmentVariables["Path"] as string;
if (pathVariable != null)
{
string[] allPaths = pathVariable.Split(';');
foreach (var path in allPaths)
{
string pythonPathFromEnv = path + "\\python.exe";
if (File.Exists(pythonPathFromEnv))
return pythonPathFromEnv;
}
}
}
Ama bir problem var:
Makineme farklı python sürümü yüklendiğinde, kullandığım "python.exe", ArcGIS de bunu kullanacağının garantisi yoktur.
"Python.exe" yol almak için başka bir araç kullanarak takdir etmiyorum . Yani, gerçekten kayıt defteri anahtarından yolu almanın herhangi bir yolu varsa düşünüyorum. For "ArcGIS10.0" kayıt görünüyor gibi:
Ve bunun için, yolu elde etmenin aşağıdaki yolunu düşünüyorum:
//get python path from registry key
string GetPythonPath()
{
const string regKey = "Python";
string pythonPath = null;
try
{
RegistryKey registryKey = Registry.LocalMachine;
RegistryKey subKey = registryKey.OpenSubKey("SOFTWARE");
if (subKey == null)
return null;
RegistryKey esriKey = subKey.OpenSubKey("ESRI");
if (esriKey == null)
return null;
string[] subkeyNames = esriKey.GetSubKeyNames();//get all keys under "ESRI" key
int index = -1;
/*"Python" key contains arcgis version no in its name. So, the key name may be
varied version to version. For ArcGIS10.0, key name is: "Python10.0". So, from
here I can get ArcGIS version also*/
for (int i = 0; i < subkeyNames.Length; i++)
{
if (subkeyNames[i].Contains("Python"))
{
index = i;
break;
}
}
if(index < 0)
return null;
RegistryKey pythonKey = esriKey.OpenSubKey(subkeyNames[index]);
string arcgisVersion = subkeyNames[index].Remove(0, 6); //remove "python" and get the version
var pythonValue = pythonKey.GetValue("Python") as string;
if (pythonValue != "True")//I guessed the true value for python says python is installed with ArcGIS.
return;
var pythonDirectory = pythonKey.GetValue("PythonDir") as string;
if (pythonDirectory != null && Directory.Exists(pythonDirectory))
{
string pythonPathFromReg = pythonDirectory + "ArcGIS" + arcgisVersion + "\\python.exe";
if (File.Exists(pythonPathFromReg))
pythonPath = pythonPathFromReg;
}
}
catch (Exception e)
{
MessageBox.Show(e + "\r\nReading registry " + regKey.ToUpper());
pythonPath = null;
}
return pythonPath ;
}
Ancak ikinci prosedürü kullanmadan önce tahminlerimden emin olmalıyım. Tahminler:
- python ile ilişkili "True", python'un ArcGIS ile kurulu olduğu anlamına gelir
- ArcGIS 10.0 ve üst sürümün kayıt defteri anahtarı aynı işlemde yazılır.
Lütfen tahminlerimle ilgili herhangi bir açıklama almama yardımcı olun.