我用python构建我的第一个模块。但是,当我尝试安装模块时,会出现此错误。知道如何解决吗?
D:\py scripts\Pi aoutomation>pip install timeCheck-1.0.tar
Requirement 'timeCheck-1.0.tar' looks like a filename, but the file does not exist
Processing d:\py scripts\pi aoutomation\timecheck-1.0.tar
Could not install packages due to an EnvironmentError: [Errno 2] No such file or directory: 'D:\\py scripts\\Pi aoutomation\\timeCheck-1.0.tar'
答案 0 :(得分:-1)
请检查类似问题here的答案
但是,在您的情况下,您正在尝试安装*.tar.gz
文件。
在使用pip install
时,您需要指定文件的绝对路径。
pip install file:/absolute_path/timeCheck-1.0.tar