<@ULVA73B9P> Can you point me to the source code w...
# marvin-in-the-wild
c
@Marvin Can you point me to the source code when I run "prefect *" in cmd? IT is defaulting its path to the C:\ drive to look for our venv, when I do not want it to be there
m
I couldn't locate specific code references, but it's likely an environment variable issue. Here are some details and links to relevant documentation that might help: - Environment Variables Not Expanded by Default: To ensure environment variables are expanded in your shell script, you might need to set
expand_env_vars: true
. This is illustrated in the example where
$USER
is used in a script. This might be related if your environment variables are not recognized correctly. - Detail Documentation - Overriding Job Variables: This guide might help if you are trying to override default behaviors. - Overriding Job Variables It seems like you might want to look into configuring your virtual environment correctly in your running scripts or Prefect deployment configurations. For more tailored assistance, maybe check out a different discussion topic in the repositories or Prefect’s community forums. It always helps to provide more details about your configurations.