Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
99 views
in Technique[技术] by (71.8m points)

python - pip install on virtualenv

I installed VMWare on window and using a virtualenv for python project.

I activated the project project1 and pip3 install xxxxx modules I need.

But some of them had an import error and when I deactivated the virtualenv and pip3 install xxxx on the root, the import error is resolved.

Are we supposed to pip install on the root, even though we activate the virtualenv? Thanks.

question from:https://stackoverflow.com/questions/65949282/pip-install-on-virtualenv

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
# A virtualenv's python pip call:
$ project1/bin/python -m pip install xxxxx

Where:

  • project1: Is the env folder inside your root folder that contain all your python modules included python it self.
  • -m is a python flag stand for: "run library module as a script" .
  • pip: Is the package manager.
  • install: is the pip command to install the desired module.
  • xxxxx: its the desired python module (no, its not about film genres)

P.S: In this way you ensure to be using the python version you installed on your virtualenv unequivocally


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...