Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PyPI index (http://jetson.webredirect.org) is down #811

Open
nicolofranceschi opened this issue Feb 1, 2025 · 5 comments
Open

PyPI index (http://jetson.webredirect.org) is down #811

nicolofranceschi opened this issue Feb 1, 2025 · 5 comments

Comments

@nicolofranceschi
Copy link

Looking in indexes: http://jetson.webredirect.org/jp6/cu122, https://pypi.ngc.nvidia.com
1.107 WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPConnection object at 0xffffa2c67af0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')'

@johnnynunez
Copy link
Collaborator

Looking in indexes: http://jetson.webredirect.org/jp6/cu122, https://pypi.ngc.nvidia.com 1.107 WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPConnection object at 0xffffa2c67af0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')'

https://pypi.jetson-ai-lab.dev/ new page

@nicolofranceschi
Copy link
Author

how can i update that ? im building a docker container FROM dustynv/l4t-pytorch:r36.2.0 there is a new version with the repo link update ?

FROM dustynv/l4t-pytorch:r36.2.0

WORKDIR /code

RUN apt update && apt install -y sudo && sudo apt install default-jdk -y

RUN apt-get install -y libmagic1
RUN apt-get install -y libreoffice
RUN apt-get install -y poppler-utils
RUN export HF_HUB_ENABLE_HF_TRANSFER=1

RUN pip install --upgrade pip

COPY ./requirements.txt /code/requirements.txt

RUN pip install -r requirements.txt

RUN pip install http://jetson.webredirect.org/jp6/cu126/+f/5cf/9ed17e35cb752/torch-2.5.0-cp310-cp310-linux_aarch64.whl#sha256=5cf9ed17e35cb7523812aeda9e7d6353c437048c5a6df1dc6617650333049092
RUN pip install http://jetson.webredirect.org/jp6/cu126/+f/5f9/67f920de3953f/torchvision-0.20.0-cp310-cp310-linux_aarch64.whl#sha256=5f967f920de3953f2a39d95154b1feffd5ccc06b4589e51540dc070021a9adb9

RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/arm64/cuda-keyring_1.1-1_all.deb
RUN sudo dpkg -i cuda-keyring_1.1-1_all.deb
RUN sudo apt-get update
RUN sudo apt-get -y install cudnn
RUN sudo apt-get -y install cudnn-cuda-12

RUN pip install psycopg2-binary

COPY ./app/dw.py /code/app/dw.py

RUN python3 app/dw.py

COPY ./app /code/app

COPY ./ /code

RUN sudo apt install supervisor

ENV QDRANTLINK=http://qdrant:6333
ENV POSTGRES_URI=postgresql://admin:admin@postgres:5432/db
ENV REDIS_URI=redis://cache:6379/0

COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf

EXPOSE 7680

Start supervisord

CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]

@johnnynunez
Copy link
Collaborator

how can i update that ? im building a docker container FROM dustynv/l4t-pytorch:r36.2.0 there is a new version with the repo link update ?

FROM dustynv/l4t-pytorch:r36.2.0

WORKDIR /code

RUN apt update && apt install -y sudo && sudo apt install default-jdk -y

RUN apt-get install -y libmagic1 RUN apt-get install -y libreoffice RUN apt-get install -y poppler-utils RUN export HF_HUB_ENABLE_HF_TRANSFER=1

RUN pip install --upgrade pip

COPY ./requirements.txt /code/requirements.txt

RUN pip install -r requirements.txt

RUN pip install http://jetson.webredirect.org/jp6/cu126/+f/5cf/9ed17e35cb752/torch-2.5.0-cp310-cp310-linux_aarch64.whl#sha256=5cf9ed17e35cb7523812aeda9e7d6353c437048c5a6df1dc6617650333049092 RUN pip install http://jetson.webredirect.org/jp6/cu126/+f/5f9/67f920de3953f/torchvision-0.20.0-cp310-cp310-linux_aarch64.whl#sha256=5f967f920de3953f2a39d95154b1feffd5ccc06b4589e51540dc070021a9adb9

RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/arm64/cuda-keyring_1.1-1_all.deb RUN sudo dpkg -i cuda-keyring_1.1-1_all.deb RUN sudo apt-get update RUN sudo apt-get -y install cudnn RUN sudo apt-get -y install cudnn-cuda-12

RUN pip install psycopg2-binary

COPY ./app/dw.py /code/app/dw.py

RUN python3 app/dw.py

COPY ./app /code/app

COPY ./ /code

RUN sudo apt install supervisor

ENV QDRANTLINK=http://qdrant:6333 ENV POSTGRES_URI=postgresql://admin:admin@postgres:5432/db ENV REDIS_URI=redis://cache:6379/0

COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf

EXPOSE 7680

Start supervisord

CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]

dustynv/l4t-pytorch:r36.4.0

@nicolofranceschi
Copy link
Author

thank you

@dusty-nv
Copy link
Owner

dusty-nv commented Feb 3, 2025

@nicolofranceschi if you needed to stick with the same base image, in your dockerfile or environment you could set PIP_INDEX_URL again with the updated URL. Those originally get set here:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants