Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

3K
Views
ERROR: Directory is not installable. Neither 'setup.py' nor 'pyproject.toml'

I've got the following error:

ERROR: Directory is not installable. Neither 'setup.py' nor 'pyproject.toml'

Background is that I'm following a guide online to expose an ML model via API Gateway on AWS that can be found here: Hosting your ML model on AWS Lambdas + API Gateway

I'm trying to pull some python packages into a local folder using the following command:

pip install -r requirements.txt --no-deps --target python/lib/python3.6/site-packages/

I have also tried this:

pip install -r requirements.txt --no-deps -t python/lib/python3.6/site-packages/

and all I get is the above error. Google is pretty bare when it comes to help with this issue, any ideas?

thanks,

over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

Please try this:

   ADD requirements.txt ./
   pip install -r requirements.txt --no-deps -t python/lib/python3.6/site-packages/

syntax: ADD source destination

'ADD requirements.txt ./' adds requirements.txt (assumed to be at the cwd) to the docker image's './' folder.

Thus creating a layer from which the daemon has the context to the location of requirements.txt in the docker image.

More about it in dockerfile-best-practices

over 4 years ago · Santiago Trujillo Report

0

you can change your directory as follow

import os
os.chdir(path)

instead of:

cd path

also try to use:

!pip freeze > requirements.txt

instead of:

pip install -r requirements.txt

then execute your code:

!pip install .

or

!pip install -e .

in conclusion try this:

import os
os.chdir(path)
!pip freeze > requirements.txt
!pip install .
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!