let us consider the following PyCharm project which has its own env
My goal is to run the test "test_translator_dispatcher_new_format.py" from a bash. How to instruct the cmd to use that venv and its local library?
let us consider the following PyCharm project which has its own env
My goal is to run the test "test_translator_dispatcher_new_format.py" from a bash. How to instruct the cmd to use that venv and its local library?
open command prompt from current (project) directory
Then activate the virtual environment using this command:
venv\Scripts\activate
cd <directory_name>
python test_translator_dispatcher_new_format.py