pypi Questions
6
Solved
so the problem is that pypi.org hase been filtered by iranian government(yes , i know it's ridiculous!). i tried to install some python modules from Github downloaded files:
pip install moduleName
...
Doerrer asked 23/1, 2023 at 15:49
1
Solved
I've just republished one of my packages, but to do so, I had to give the username as __token__ and use an API Token I generated from the website as my password. Is there another way to authenticat...
3
Solved
I am trying to make my git repository pip-installable. In preparation for that I am restructuring the repo to follow the right conventions. My understanding from looking at other repositories is th...
Sang asked 8/2, 2019 at 17:7
3
I searched a bit but could not find a clear answer.
The goal is, to have two pip indexes, one is a private index, that will be a first priority. And one is the standard PyPI. The priority is there ...
Outlying asked 25/4, 2021 at 11:59
3
What is the best way to check if a PyPI package name is taken?
Several times now I have searched pypi for a package and received no results. Then I have taken the time to create a package with a na...
Toback asked 18/11, 2021 at 17:7
4
Does PyPI support simple download urls? The reason I want to do this, is that I have a PC with curl installed, but not pip. So I would be able to install the package with:
pip install ppci
But s...
6
I got the following error when trying to install boto3 from python on my mac
pip3 install boto
Looking in indexes: https://pypi.org
ERROR: Could not find a version that satisfies the requirement bo...
2
I wish to start using poetry on some projects at work, where I am stuck behind corporate filters that sometimes interfere with certs.
If I use pip, I can ignore SSL errors by doing something like t...
Mchenry asked 25/11, 2021 at 0:27
2
setup.py has one significant problem:
it can not be parsed securely
This leads to a lot of problems - it can not be securely analysed, reading 100k+ packages from PyPI requires too much overhea...
3
Solved
My Python projects heavily depends on PyPi packages.
I want to make sure that: in any time in the future: the packages required by my apps will always be available online on PyPi.
For example:-
I f...
Chewy asked 13/5, 2022 at 16:41
22
Solved
My Python package has a setup.py which builds fine locally on Ubuntu Trusty and on a fresh Vagrant Ubuntu Trusty VM when I provision it like this:
sudo apt-get install python python-dev --force-ye...
2
Should I be using only pyproject.toml or use it with setup.py and setup.cfg? Or perhaps some other combination of them.
I can't find any definitive answer to this question so I'd be pleased i...
Yea asked 10/8, 2022 at 16:54
5
Solved
Is there a way to tell the tox test automation tool to use the PyPI mirrors while installing all packages (explicit testing dependencies in tox.ini and dependencies from setup.py)?
For example, pi...
16
Solved
I'm trying to upload a python package to PyPi, using the following commands:
pip install -e .
python setup.py bdist_wheel --universal
twine upload --repository-url https://upload.pypi.org/legacy/ ...
3
I want to automate the upload process bug in some cases the python setup.py upload fails because pypi server already have the save version uploaded.
How can I force it to upload, from the script (...
Fiddlewood asked 11/1, 2014 at 16:11
2
Solved
I'm attempting to upload a tarball and wheel for a new package to PyPI using twine which was recently installed under a conda environment (Miniconda3). After I enter my username I expect to be prom...
4
Solved
I am working on blowdrycss. The repository is here.
I want the settings file for blowdrycss_settings.py to be excluded from the final package on pypi. The intention is to dynamically build a cust...
Jacquard asked 31/1, 2016 at 16:1
6
I followed the official documentation for uploading packages to PyPI, as well as the information provided in PyPI readme, but I get a HTTP 400 error each time:
$ twine upload dist/*
Uploading dist...
3
Solved
I created a package in PyPI named virtdc. I made some changes and uploaded 2 different versions 0.1.0 and 0.1.1. Now I deleted version 0.1.1 through the PyPI web interface and try to upload again w...
Octal asked 24/2, 2015 at 23:57
9
Solved
I've uploaded my Python package to PyPI.
But now I made new version of my package and need to upload it.
I tried to make same progress which I did when upload the package first time but I got the e...
Dormancy asked 25/8, 2018 at 10:26
2
I have built a package (let's call it mypackage) that depends on a well-known third-party module (namely pandas), available on PyPi.
I've uploaded mypackage on a custom PyPi-like server (pypicustom...
2
Solved
I am building a Docker image and need to run pip install vs a private PyPi with credentials.
What is the best way to secure the credentials?
Using various file configuration options (pip.conf, requ...
3
Solved
I have a local GitLab installation that comes with a local PyPI server to store company internal Python packages.
How can I configure my PyPI to search packages in both index servers?
I read about ...
Karisakarissa asked 7/9, 2020 at 22:48
3
Solved
I was looking at the Python Package Index (PyPi) and noticed 2 very similar packages: opencv-contrib-python and opencv-python and wondering what the difference was. I looked at them and they had th...
5
Up until recently, it was possible to see how many times a python module indexed on https://pypi.python.org/pypi had been downloaded (each module listed downloads for the past 24hrs, week and...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.