admin管理员组

文章数量:1278916

I try to install this code:

pip3 install .git#

but I get this answer:

Collecting .git
  Downloading .git
     \ 422.0 kB 3.6 MB/s 0:00:00
  ERROR: Cannot unpack file C:\Users\booge\AppData\Local\Temp\pip-unpack-d9znlq24\social-media-hacker-list.git (downloaded from C:\Users\booge\AppData\Local\Temp\pip-req-build-_xoqz3f_, content-type: text/html; charset=utf-8); cannot detect archive format
ERROR: Cannot determine archive format of C:\Users\booge\AppData\Local\Temp\pip-req-build-_xoqz3f_

What am I doing wrong?

I try to install this code:

pip3 install https://github/MobileFirstLLC/social-media-hacker-list.git#

but I get this answer:

Collecting https://github/MobileFirstLLC/social-media-hacker-list.git
  Downloading https://github/MobileFirstLLC/social-media-hacker-list.git
     \ 422.0 kB 3.6 MB/s 0:00:00
  ERROR: Cannot unpack file C:\Users\booge\AppData\Local\Temp\pip-unpack-d9znlq24\social-media-hacker-list.git (downloaded from C:\Users\booge\AppData\Local\Temp\pip-req-build-_xoqz3f_, content-type: text/html; charset=utf-8); cannot detect archive format
ERROR: Cannot determine archive format of C:\Users\booge\AppData\Local\Temp\pip-req-build-_xoqz3f_

What am I doing wrong?

Share Improve this question edited Feb 23 at 20:19 Mureinik 312k54 gold badges358 silver badges391 bronze badges asked Feb 23 at 20:10 user29768200user29768200 11 silver badge 1
  • 2 The git repository is a rust project, why are you using the "pip" tool here, which is related to python? – Progman Commented Feb 23 at 20:11
Add a comment  | 

1 Answer 1

Reset to default 1

This isn't a pip package, or even a Python project at all - it's essentially just a markdown file with a list of resources. If you want a local copy of it, you can clone it using git:

git clone https://github/MobileFirstLLC/social-media-hacker-list.git

本文标签: pipTry to install httpsgithubcomMobileFirstLLCsocialmediahackerlistgitStack Overflow