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.
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
Asked: 2022-03-06 11:00:00 +0000
Seen: 13 times
Last updated: Oct 19 '22
What is the process for installing SASS/Compass in the DDEV web container?
Is it possible to create and execute a file without having to type the file name twice?
How can you obtain the sha1 of the most recent commit in a git repository using C#?
What is the process for initializing Java UDFs in Spark?
How can I use crontab to initiate and modify the libcamera-vid RTSP stream on my Raspberry Pi?
Is it possible to repair a file within a docker container that has failed to start?
What is an effective way to edit HTML strings using PowerShell?