我正在尝试安装github上提供的python包,但我不确定该怎么做。这是一个包:https://github.com/Jefferson-Henrique/GetOldTweets-python。
有人可以向我提供有关如何进行此安装的明确和分步说明吗?目前的答案对我来说都不够明确。我尝试了以下命令提示符命令,但它无法正常工作。我安装了git。
pip install git+https://github.com/Jefferson-Henrique/GetOldTweets-python.git
错误:
Cloning https://github.com/Jefferson-Henrique/GetOldTweets-python.git to c:\users\haris\appdata\local\temp\pip-ocsu8r-build
Error [Error 2] The system cannot find the file specified while executing command git clone -q https://github.com/Jefferson-Henrique/GetOldTweets-python.git c:\users\haris\appdata\local\temp\pip-ocsu8r-build
Cannot find command 'git'
答案 0 :(得分:3)
没有通过pip安装git。这是您要通过apt install git
安装的常规软件包,最有可能是root用户。
答案 1 :(得分:0)
你需要在pip之外安装软件包,因为它不是python软件包。如果您有anaconda或miniconda,Conda install
将会有效,如果您使用的是Linux系统,则可以apt get install
。一旦你有了git,在导航到所需的目录后运行got clone package_name
,你就应该好了。