python pip trouble installing from requirements.txt

前端 未结 6 2071
清酒与你
清酒与你 2020-12-13 00:12

I\'ve had great luck with pip in the past, but working at installing some stuff in a venv on is giving me some headaches. I keep getting errors like No distributions at

6条回答
  •  执念已碎
    2020-12-13 00:52

    Following solution has worked for me :

    (my-virtualenv) 20:42 ~/MyPf (master)$ pip freeze > requirements.txt | 
    (my-virtualenv) 20:43 ~/MyPf (master)$ pip install -r requirements.txt
    

提交回复
热议问题