Pip packages path - windows

前端 未结 2 524
一向
一向 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())"
    

提交回复
热议问题