Merge pull request #1185 from benstobbs/master
litex_setup.py on Windows: Change install "python3" to current interpreter
This commit is contained in:
commit
f82f769794
|
@ -221,7 +221,8 @@ def litex_setup_install_repos(config="standard", user_mode=False):
|
||||||
if repo.develop:
|
if repo.develop:
|
||||||
print_status(f"Installing {name} Git repository...")
|
print_status(f"Installing {name} Git repository...")
|
||||||
os.chdir(os.path.join(current_path, name))
|
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 "",
|
options="--user" if user_mode else "",
|
||||||
), shell=True)
|
), shell=True)
|
||||||
if user_mode:
|
if user_mode:
|
||||||
|
|
Loading…
Reference in New Issue