我正在尝试在上下文管理器中更改我的python程序中的目录。使用invoke.context.Context
似乎是从织物文档中获取的正确方法,并且使用常规with os.chdir
无法使用。
但是,当我尝试做
之类的事情时from invoke import Context
with Context.cd("/etc"):
subprocess.run(["ls"])
我回到了一个错误,上面写着:
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-2-40b28af3213a> in <module>
----> 1 with Context.cd("/etc"):
2 subprocess.run(["ls"])
3
~/miniconda3/envs/python3/lib/python3.7/contextlib.py in helper(*args, **kwds)
237 @wraps(func)
238 def helper(*args, **kwds):
--> 239 return _GeneratorContextManager(func, args, kwds)
240 return helper
241
~/miniconda3/envs/python3/lib/python3.7/contextlib.py in __init__(self, func, args, kwds)
80
81 def __init__(self, func, args, kwds):
---> 82 self.gen = func(*args, **kwds)
83 self.func, self.args, self.kwds = func, args, kwds
84 # Issue 19330: ensure context manager instances have good docstrings
TypeError: cd() missing 1 required positional argument: 'path'
文档使这看起来正确(http://docs.pyinvoke.org/en/latest/api/context.html#invoke.context.context(,但我有点迷路。
任何建议都是有帮助的。
查看文档,似乎您应该创建自己的Context
实例,而不是直接使用Context
类。
他们还在上下文实例上使用run()
方法,而不是subprocess.run()
。
尝试以下操作:
from invoke import Context
c = Context()
with c.cd("/etc"):
c.run("ls")