Pip packages path - windows

前端 未结 2 410
一向
一向 2021-01-26 11:48

I have pip install installing the packages to AppData/Python/Python36/Scripts folder. How do I know the exact path to this folder from Command

相关标签:
2条回答
  • 2021-01-26 12:05

    Here's how to obtain the requested result:

    python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
    
    0 讨论(0)
  • 2021-01-26 12:11

    Verify a successful installation by opening a command prompt window and navigating to your Python installation's script directory (default is C:\Python27\Scripts). Type pip freeze from this location to launch the Python interpreter.

    https://github.com/BurntSushi/nfldb/wiki/Python-&-pip-Windows-installation

    0 讨论(0)
提交回复
热议问题