Error code 모음/4. Python errors

[Python] PIP Install: Cannot combine --user and --target 에러

쟈누이 2021. 7. 8. 14:31
반응형

 

 

1. 에러 원인


마이크로 앱 소프트웨어에서 파이썬 또는 파이썬 라이브러리를 인스톨할 경우에 발생하는 에러인 것 같다.

 

 

  

 

 

2. 해결 방법


가장 뒤에 --no-user 를 붙인다. 그러면 이슈 해결이 가능한 것 같다.

 

 

 

 

3. 참고 링크


https://stackoverflow.com/questions/63783587/pip-install-cannot-combine-user-and-target

 

PIP Install: Cannot combine --user and --target

My goal is to install a package to a specific directory on my machine so I can package it up to be used with AWS Lambda. Here is what I have tried: pip install snowflake-connector-python -t . pip i...

stackoverflow.com

 

반응형