-1

i build my 1st module in python. but when i try to install the module it gives this error. Any idea how to resolve?

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'

Navod B ak
  • 13
  • 1
  • 6

1 Answers1

-1

Please check the answer to a similar question here

However, in your case, you're trying to install a *.tar.gz file.

You'll need to specify the absolute path of the file while using pip install.

More details here

Use:

pip install file:/absolute_path/timeCheck-1.0.tar 
Community
  • 1
  • 1
ParvBanks
  • 1,138
  • 6
  • 15