mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
change repo install python interpreter to current interpreter
This commit is contained in:
parent
3020344fd8
commit
e0149eb814
1 changed files with 2 additions and 1 deletions
|
@ -222,7 +222,8 @@ def litex_setup_install_repos(config="standard", user_mode=False):
|
|||
if repo.develop:
|
||||
print_status(f"Installing {name} Git repository...")
|
||||
os.chdir(os.path.join(current_path, name))
|
||||
subprocess.check_call("python3 setup.py develop {options}".format(
|
||||
subprocess.check_call("{python_executable} setup.py develop {options}".format(
|
||||
python_executable = sys.executable,
|
||||
options="--user" if user_mode else "",
|
||||
), shell=True)
|
||||
if user_mode:
|
||||
|
|
Loading…
Reference in a new issue