Questions tagged [pypiserver]

45 questions
2
votes
1 answer

pip is able to search package but install fails with error

I have local pypi server, where I uploaded cffi package. When I try to search, it return the package. $ pip search -i https://localhost --trusted-host localhost cffi cffi (1.11.4) - 1.11.4 But when try to install, it gives error. $ pip install -i…
Nilesh
  • 20,521
  • 16
  • 92
  • 148
2
votes
1 answer

Local pypi server tells me 403 Forbidden when registering packages

I am trying to deploy a pypi-server to host our internal packages. I've been pulling my hair out over the behavior of pypi inside this docker container. Dockerfile FROM python:3.5 RUN apt-get update RUN pip install --upgrade pip RUN pip install -U…
melchoir55
  • 6,842
  • 7
  • 60
  • 106
2
votes
1 answer

pypiserver - Package description doesn't appear in pip search

I am struggling to find information about how / where to fill a summary for a PyPI package that can be seen next to the package name when typing pip search . We run a private PyPI server with the pypiserver library and would like all our…
JahMyst
  • 1,616
  • 3
  • 20
  • 39
2
votes
0 answers

pypi: registering a modified version of a python package

I am trying to register a modified version of a python package which already exists in pypi called cutadapt. Any suggestions on how to do that? I thought I would give the package a different name in the minimum amount of places required, then submit…
719016
  • 9,922
  • 20
  • 85
  • 158
1
vote
0 answers

Python ModuleNotFound After Successful Install from Local pypi-server

Python 3.8 Package Project -my_package | |-dist |-test_framework | |-test_folder |-__init__.py |-cycle_folder |-__init__.py |-venv |.pypirc |__init__.py |LICENSE.txt |README.md |setup.cfg Created…
Guy
  • 666
  • 1
  • 10
  • 34
1
vote
0 answers

private pypiserver with read write restrictions to user/password pairs

I'm using https://hub.docker.com/r/pypiserver/pypiserver to host a private pypi server. The -a flag allows me to restrict which actions need to be authenticated. The -P flag allows me to pass in user/password pairs. I need: all actions requiring…
Shuri2060
  • 729
  • 6
  • 21
1
vote
1 answer

How to deploy a PyPI Server in App Engine?

I'm trying with PyPICloud on the .yaml file there is this config runtime: python37 service: dev-pypyserver instance_class: F4 handlers: - url: /.* secure: always script: auto default_expiration: "3s" entrypoint: pserve server.ini but…
1
vote
1 answer

pip unable to install package even though it is present on pypi server

I am trying to install NumPy package by doing pip install numpy==1.19.2 after I installed and activated a virtual environment but I am getting an error ERROR: Could not find a version that satisfies the requirement numpy==1.19.2 (from versions:…
SagarM
  • 311
  • 4
  • 14
1
vote
1 answer

When using pip install, why is the list of (from versions: xxx) very short?

The following is the output I got on server1. The following is the output I got on server2. This results in that I cannot download older versions of some packages (e.g. tensorflow-gpu) on server1. Why are they different? What's wrong?
Daniel
  • 1,783
  • 2
  • 15
  • 25
1
vote
1 answer

How do I deploy a python wheels package statically on a custom CDN server?

I have a fork of a CPython extension package that takes literally hours to compile, so I would like to deploy precompiled wheels somewhere to download from instead of compiling from source. I am also aware that I can host pypiserver myself, but I…
desertkun
  • 1,027
  • 10
  • 19
1
vote
1 answer

client URL for self hosted devpi?

I am running this devpi docker container as per instruction I have setup password in the environment variable DEVPI_PASSWORD to devpi then I have setup ~/.pypirc file…
Ciasto piekarz
  • 7,853
  • 18
  • 101
  • 197
1
vote
1 answer

Nginx reverse proxy fails if location is not `/` with pypiserver

I'm trying to get a custom PyPI server running using pypiserver. I tried to modify the example nginx.conf file in the README in order to use /mylocation instead of / and ended up with the following: server { server_name mypi.com; listen 443…
user872015
1
vote
1 answer

local pypi package depends on python pypi server

I created my local pypi server http://localhost:8080/simple. I uploaded packages flask-mongoengine I need for my project, but when tox try to do pip install that packages dependency for nose, it try to download from pypi.python.org Collecting…
Nilesh
  • 20,521
  • 16
  • 92
  • 148
1
vote
1 answer

My home does not have .pypirc file which is giving me an error while registering the python package to PyPI

I am using ubuntu and I have created a python package and it is ready to register on PyPI but when I use python setup.py register it is showing an error like this: Server response (410): This API is no longer supported, instead simply upload the…
Shivams334
  • 95
  • 4
  • 11
1
vote
1 answer

Downloading, but not installing argon2-cffi

We host a simple pypi server in our company. This command works for most pip package, but it fails for argon2-cffi: pypi@pypihost:~> pip install -d packages argon2-cffi Collecting argon2-cffi File was already downloaded…
guettli
  • 25,042
  • 81
  • 346
  • 663