问题描述
我对 Python 非常陌生,如果这是一个愚蠢的问题,我很抱歉.无论如何,我在尝试运行安装在 PyCharm(Python IDE)上的包时遇到此错误:
I'm extremely new to Python, so sorry if this is a stupid question. Anyways, I'm getting this error when trying to run a package I installed on PyCharm (Python IDE):
Traceback (most recent call last):
File "C:\Users\turtl\PycharmProjects\untitled\venv\Scripts\openbte-script.py", line 11, in <module>
load_entry_point('openbte==0.9.24', 'console_scripts', 'openbte')()
File "C:\Users\turtl\PycharmProjects\untitled\venv\lib\site-packages\openbte\__main__.py", line 47, in main
Geometry(**vars(args))
File "C:\Users\turtl\PycharmProjects\untitled\venv\lib\site-packages\openbte\geometry.py", line 83, in __init__
data = self.compute_mesh_data()
File "C:\Users\turtl\PycharmProjects\untitled\venv\lib\site-packages\openbte\geometry.py", line 91, in compute_mesh_data
self.import_mesh()
File "C:\Users\turtl\PycharmProjects\untitled\venv\lib\site-packages\openbte\geometry.py", line 448, in import_mesh
a=subprocess.check_output(['gmsh','-' + str(self.dim),'mesh.geo','-o','mesh.msh'])
File "C:\Users\turtl\AppData\Local\Programs\Python\Python36\lib\subprocess.py", line 336, in check_output
**kwargs).stdout
File "C:\Users\turtl\AppData\Local\Programs\Python\Python36\lib\subprocess.py", line 403, in run
with Popen(*popenargs, **kwargs) as process:
File "C:\Users\turtl\AppData\Local\Programs\Python\Python36\lib\subprocess.py", line 709, in __init__
restore_signals, start_new_session)
File "C:\Users\turtl\AppData\Local\Programs\Python\Python36\lib\subprocess.py", line 997, in _execute_child
startupinfo)
FileNotFoundError: [WinError 2] The system cannot find the file specified
从我从以前的问题中收集的信息来看,这似乎是因为我的 virtualenv 中没有 gmsh.现在我已经下载了 gmsh,但我找不到有关如何将其放入 virtualenv 的正确安装指南.有没有人有这方面的经验?
From what I've gathered from previous questions, it seems this is because I don't have gmsh in my virtualenv. Now that I've downloaded gmsh, I can't find a proper installation guide on how to get it into the virtualenv. Does anyone have experience with this?
我想更具体地说,有没有办法可以查明它试图访问的路径并将 gmsh 粘贴到该目录中?
I guess more specifically, is there a way I can pinpoint the path that it's trying to access and just paste gmsh into that directory?
推荐答案
openbte\geometry.py
似乎运行 gmsh.exe
没有任何路径:
openbte\geometry.py
seems to run gmsh.exe
without any path:
a=subprocess.check_output(['gmsh','-' + str(self.dim),'mesh.geo','-o','mesh.msh'])
这意味着它期望 gmsh.exe
位于 %PATH%
的某处.所以安装 gmsh
并将带有 gmsh.exe
的目录添加到 %PATH%
中.
Which means it expects gmsh.exe
somewhere in the %PATH%
. So install gmsh
and add the directory with gmsh.exe
to the %PATH%
.
这篇关于让 gmsh 进入 virtualenv的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!