Linked Questions

30 questions linked to/from What is a Python egg?
19 votes
2 answers
14k views

When I need a Python library, I use pip to fetch it from PyPi and if I create a project and want to share it, I just need to have in place the setup.py file and that would make it easily installable. ...
M. Buil's user avatar
  • 569
0 votes
1 answer
841 views

i'm running python3 setup.py sdist which simply suppose to creates distribution package in dist folder. I don't understand where and why egg_info is coming in my package? what is the importance ?
change198's user avatar
  • 2,135
0 votes
1 answer
265 views

I am using pycharm/python 3.8. I am working on a branch let's call it: Working_branch1. I have some tests that I need to run, usually when I run them they test the version of my code: code.py located \...
2831 votes
37 answers
4.7m views

I want to use a push and pull automatically in Git Extensions, Sourcetree or any other Git GUI without entering my username and password in a prompt, every time. So how can I save my credentials in ...
949 votes
18 answers
552k views

I have installed a Python package with python setup.py install. How do I uninstall it?
flybywire's user avatar
  • 277k
1134 votes
16 answers
592k views

I know pip is a package manager for Python packages. However, I saw the installation on IPython's website use Conda to install IPython. Can I use pip to install IPython? Why should I use Conda as ...
143 votes
5 answers
62k views

When I do a "pip install -e ..." to install from a git repo, I have to specify #egg=somename or pip complains. For example: pip install -e git://github.com/hiidef/oauth2app.git#egg=oauth2app What's ...
50 votes
9 answers
21k views

I would like to run my own internal PyPI server, for egg distribution within my organization. I have found a few projects, such as: EggBasket http://plone.org/products/plonesoftwarecenter As I ...
drue's user avatar
  • 5,173
26 votes
3 answers
14k views

On Windows, I normally just use the binary installer, but I would like to install NumPy only in a virtualenv this time, so I created a virtual env: virtualenv --no-site-packages --distribute ...
oob's user avatar
  • 1,968
27 votes
3 answers
3k views

Coming from a Node.js + npm background, it is really nightmarish trying to understand all the things related to Python package management. After a few hours of research, I've stumbled upon all those ...
Icoin's user avatar
  • 281
11 votes
3 answers
25k views

I want to make a portable app that would have some code and python executable that would run on any Windows even if python is not installed. I would like it to be python 3.6 and so it has only pip ...
4 votes
3 answers
10k views

I'm writing a program that will search a website for specific entries inside of articles, I'm using selenium webdriver for Python. While attempting to connect to the site I get this exception: ...
8 votes
1 answer
10k views

I'm developing a python package foo. My project structure looks like this: . ├── foo │ ├── foo │ │ ├── bar.py │ │ ├── foo.py │ │ ├── __init__.py │ ├── README.md │ └── setup.py ├── ...
Tirafesi's user avatar
  • 1,509
4 votes
1 answer
4k views

I am deploying a django project using heroku cloud platform. I have added the dependencies in requirements.txt file. However when I push to heroku master, I get the following error: Collecting ...
Deesha's user avatar
  • 538
4 votes
1 answer
2k views

I am creating a python env using conda, pip and yml config file by using first: conda env create -f test.yml -n test_pip then conda env update -f test.yml -n test_pip with the following .yml file (...

15 30 50 per page
1
2