Tenlïs
Tenlïs
RRunPod
Created by m0nkspade on 12/23/2023 in #⚡|serverless
Advice on Creating Custom RunPod Template
yea try it
49 replies
RRunPod
Created by m0nkspade on 12/23/2023 in #⚡|serverless
Advice on Creating Custom RunPod Template
let us know
49 replies
RRunPod
Created by m0nkspade on 12/23/2023 in #⚡|serverless
Advice on Creating Custom RunPod Template
The error "ERROR: Could not build wheels for psutil, which is required to install pyproject.toml-based projects" you're encountering in your Docker build process is likely due to missing build dependencies required for compiling the psutil package. This package is a Python module providing an interface for retrieving information on system utilization (like CPU, memory, disks, network, sensors) in Python scripts. To resolve this issue in the context of your Dockerfile, you should ensure that all necessary system packages for building Python packages are installed. Here's how you can modify your Dockerfile to include these dependencies: 1. Add Build Dependencies: In the part of your Dockerfile where you're setting up your Python environment, make sure to install packages that are typically required for building Python modules, such as build-essential and python3-dev. Since you're using a Debian-based image (python:3.10.9-slim), you can use apt-get to install these:
RUN apt-get update && \
apt-get install -y build-essential python3-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN apt-get update && \
apt-get install -y build-essential python3-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

2. Update pip and setuptools: Older versions of pip and setuptools can sometimes cause issues when building packages. Make sure they're updated:
RUN pip install --upgrade pip setuptools wheel

RUN pip install --upgrade pip setuptools wheel

3. Python and pip Version: Ensure that the version of Python and pip in your Docker container are compatible with psutil. You might want to check the psutil documentation or PyPI page to see which versions are supported. 4. Error Logging: If the above steps don't resolve the issue, try to get more detailed error logs. This can provide additional insight into what might be going wrong. By adding these build tools and ensuring everything is up to date, you should be able to resolve the issue with building wheels for psutil. Remember to place these commands in the appropriate part of your Dockerfile, where the Python environment is being set up.
49 replies
RRunPod
Created by m0nkspade on 12/23/2023 in #⚡|serverless
Advice on Creating Custom RunPod Template
can you share your code ? (dockfile)
49 replies
RRunPod
Created by m0nkspade on 12/23/2023 in #⚡|serverless
Advice on Creating Custom RunPod Template
it seems that you're missing some lib // update i think
49 replies
RRunPod
Created by m0nkspade on 12/23/2023 in #⚡|serverless
Advice on Creating Custom RunPod Template
If you need help I can help 👋
49 replies
RRunPod
Created by Tenlïs on 12/26/2023 in #⛅|pods
Integrating Loras and Checkpoint into Fooocus ashleykza/fooocus:2.1.855 with preset realistic
yep
13 replies
RRunPod
Created by Tenlïs on 12/26/2023 in #⛅|pods
Integrating Loras and Checkpoint into Fooocus ashleykza/fooocus:2.1.855 with preset realistic
I tried the upload method via Jupyter again using the file upload but I still can't access it via the web UI. To do this I used the resources (loras) that I use on my local version of fooocus (on my windows). the resources are functional, but as said before they are not available via the web ui
13 replies
RRunPod
Created by Tenlïs on 12/26/2023 in #⛅|pods
Integrating Loras and Checkpoint into Fooocus ashleykza/fooocus:2.1.855 with preset realistic
Oh I see ok. I also tried uploading them via Jupiter but it seems to have the same effect? could you tell me what runpodctl is?
13 replies