You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Add a `micropython` binary in $PATH pointing to this binary.ifhasattr(sys, "executable"):
os.system("cp {} {}".format(sys.executable, venv_bin_path+os.sep+"micropython"))
but on my local copy this happens
MicroPython v1.24.0 on 1980-01-01; darwin [GCC 4.2.1] version
Use Ctrl-D to exit, Ctrl-E for paste mode
>>> import sys
>>> sys.executable
''
>>>
so maybe it is best to add and sys.executable to the check?
ifhasattr(sys, "executable") andsys.executable:
The text was updated successfully, but these errors were encountered:
from venv
but on my local copy this happens
so maybe it is best to add
and sys.executable
to the check?The text was updated successfully, but these errors were encountered: