Answers for "how to install pip module in virtualenv"

8

install virtualenv

pip install virtualenv

activate it by doing this:
cd myproject/Scripts/activate
Posted by: Guest on July-23-2020
0

Install pip and add virtual environment to the Python Kernel

python -m pip install --upgrade pip
pip install ipykernel               #  install ipykernel
python -m ipykernel install --user --name=tfodj       # associate virually to the jupyternotebook, (tfodj is the virtual environment,need to change it accordingly)
Posted by: Guest on September-29-2021

Code answers related to "how to install pip module in virtualenv"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language