Ask Your Question
4

How can virtualenv be activated within the Makefile?

asked 2022-03-06 11:00:00 +0000

pufferfish gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2022-10-19 05:00:00 +0000

lakamha gravatar image

To activate virtualenv within a Makefile, you can use the following command:

venv:
    . path/to/virtualenv/bin/activate && pip install -r requirements.txt

This command first activates the virtual environment by sourcing the activate script, and then installs the required packages from the requirements.txt file using pip. The . activate command ensures that the subsequent pip commands are executed within the virtual environment. You can then run this command by typing make venv in your terminal/shell.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-03-06 11:00:00 +0000

Seen: 19 times

Last updated: Oct 19 '22