<@U043U9Z9HPH> does that assume I'm using virtual ...
# general
b
@lively-france-83054 does that assume I'm using virtual environment?
b
Pulumi creates a venv for you automatically, check your
Pulumi.yaml
b
ok, but that path doesn't exist
b
which path? the venv is there.
have you tried running the command?
b
yes, but there is no subdir bin
'The system cannot find the path specified'
b
try
virtualenv venv
b
'virtualenv' is not recognized as an internal or external command, operable program or batch file.
b
okay, you appear to have issues with your python installation
l
python3 -m venv venv
should work also
b
yes, in the end I found an article recommending to add it to the requirements.txt file and run:
python -m venv venv && venv\Scripts\pip install -r requirements.txt
thanks!