After pypi.python.org has been migrated to pypi.org, I got an error when trying to upload a package to PyPI using the command as usual:
python2.7 setup.py sdist upload
The error message is:
Upload failed (410): Gone (This API has been deprecated and removed from legacy PyPI in favor of using the APIs available in the new PyPI.org implementation of PyPI (located at https://pypi.org/). For more information about migrating your use of this API to PyPI.org, please see https://packaging.python.org/guides/migrating-to-pypi-org/#uploading. For more information about the sunsetting of this API, please see https://mail.python.org/pipermail/distutils-sig/2017-June/030766.html)
I looked into the solution mentioned in the message and then googled a little bit. Unfortunately, the solutions I found were not working, including updating my local ~/.pypirc
file. Like this:
[distutils] index-servers = pypi [pypi] repository:https://pypi.python.org/pypi or repository:https://upload.pypi.org/legacy/ username:yourusername password:yourpassword
I still got the same error message. What should I do?
Go to PyPI and create an account. Run twine upload dist/* in the terminal/command line. Enter the account credentials you registered for on the actual PyPI. Then, run pip install [package_name] to install your package.
Upgrade to the very latest pip and setuptools; install twine:
pip install -U pip setuptools twine
Edit ~/.pypirc
and comment out or remove repository
:
[pypi] #repository:https://pypi.python.org/pypi
Use twine to upload your module to pypi from within the folder containing the module source, setup.py, and other files:
python setup.py sdist twine upload dist/*
See https://packaging.python.org/guides/migrating-to-pypi-org/#uploading
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With