About 50 results
Open links in new tab
  1. 'pip' is not recognized as an internal or external command

    May 17, 2014 · An environment variable is not set. pip is installed, but an environment variable is not set. A environment variable is a Windows variable where the pip path is saved, so it can be run at …

  2. python - 'pip' is not recognized - Stack Overflow

    Apr 25, 2016 · This will install pip and add both, Python and pip to your envirnoment variables. Second Option By default, pip is installed in C:\Python34\Scripts\pip To add the path of your pip installation to …

  3. How to install pip with Python 3? - Stack Overflow

    Pip's website says that it already comes with Python 3.4+ if you downloaded from python.org. However, when I type pip on terminal, I get command not found. So I decided to go through the python3's …

  4. python - How to upgrade pip? - Stack Overflow

    Mar 12, 2019 · 2 How to upgrade pip using command prompt: Open the command prompt from the Start Menu Click the lower-left Start button to open the Start Menu input cmd in the empty box and tap …

  5. python - Should I use pip or pip3? - Stack Overflow

    19 Use python3 -m pip or python -m pip. That will use the correct pip for the python version you want. This method is mentioned in the pip documentation: python -m pip executes pip using the Python …

  6. pip install fails with "connection error: [SSL: CERTIFICATE_VERIFY ...

    $ pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org <package_name> Note: Sometime during April 2018, the Python Package Index was migrated from …

  7. What is the use case for `pip install -e`? - Stack Overflow

    Mar 5, 2017 · 58 pip install -e is how setuptools dependencies are handled via pip. What you typically do is to install the dependencies: git clone URL cd project run pip install -e . or pip install -e .[dev] * And …

  8. ImportError: cannot import name 'RetrievalQA' from 'langchain.chains ...

    Nov 9, 2025 · I’m trying to use LangChain in my Python project. My current retriever.py contains: from langchain.chains import RetrievalQA But when I run my code, I get: ImportError: cannot import name …

  9. What's the difference between "pip install" and "python -m pip install"?

    Sep 9, 2014 · I have a local version of Python 3.4.1 and I can run python -m pip install, but I'm unable to find the pip binary to run pip install. What's the difference between these two?

  10. How to pip install a package with min and max version range?

    Using package==1.* instead of package>=1.2 prevents pip from installing major version 2+ for the package, which is desirable since major version changes are often backwards incompatible.