PermissionError: [Errno 13] Permission denied: 'C:\\Program Files\\Python35\\Lib\\site-packages\\six.py'

后端 未结 3 656
失恋的感觉
失恋的感觉 2021-01-21 01:51

I am using python 3.5.3, and now I want to install pandas and numpy but not able to, following is the error in cmd, anyone can help me?

 C:\\Program Files\\Pytho         


        
相关标签:
3条回答
  • 2021-01-21 02:25

    The command line you're using does not have access to C:\\Program Files\\Python35\\Lib\\site-packages\\six.py.

    Run the command in a command line with administrative priveleges.

    0 讨论(0)
  • 2021-01-21 02:33

    As others have pointed out you need to run the command with admin privileges.

    How to do this varies by windows version, but on Windows 8 and 10 you can just press Windows+X (or just right-clicking the Start button). On the menu, choose “Command Prompt (Admin).”

    0 讨论(0)
  • 2021-01-21 02:37

    Run command line in admin mode and then :

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