354 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
247
views
Pymoo install fail
When trying to pip install pymoo I get the failure warning below.Tried updating pip but that did not solve the problem. Looks like there is an issue with the egg but have no clue as to how to begin ...
1
vote
1
answer
287
views
Including non-Python files without __init__.py using `package_data` in setup.py?
Given this directory structure (empty __init__.py and logging.yml is fine):
foo
│ setup.py
│
└─── foo
│ __init__.py
│
└─── config
logging.yml
Here is my attempt, this ...
0
votes
1
answer
135
views
Set same panel size for diferent faceted ggplot figures
I have several lists, each of them containing a diferent number of datasets (minimal example of a list below):
library(tidyverse)
mylist = list()
mylist[[1]] = mtcars
mylist[[2]] = mtcars |> ...
0
votes
1
answer
236
views
how to avoid generating *.egg file when publishing packages to testpypi/pypi?
I am facing the below error when I am building and publishing my package to testpypi using Github Workflows.
When I try to build my package locally, I get only two files but when I use workflows yml, ...
1
vote
1
answer
1k
views
How to Ensure Pip Is Installing dist-info rather than egg-info
I am running a software built on Digital Ocean App Platform. I need to install two private packages which I built myself. Problem is when I try to install them with the following commands:
pip install ...
1
vote
0
answers
259
views
Failed to launch the browser process! Syntax error: ")" unexpected
i have tried package "puppeteer": "^21.1.1" for html to pdf convertion in node js (egg-scripts) but it gives me this error
Error: Failed to launch the browser process!
/home/pi/....
0
votes
2
answers
2k
views
Get python-dotenv "OSError: Starting path not found" in a python package install using `setup.py install`
Problem description
When working with environment vars, a .env file is used for development via python-dotenv. When the app is distributed (and so installed using setuptools), the env vars are ...
0
votes
0
answers
89
views
Is there a way to pre-define the python egg name programmatically?
from setuptools import setup, Extension
kwargs = {"name": "foo",
"author": "",
"version": "1.0",
...
0
votes
1
answer
377
views
How to upload a non standard Python library in AWS Glue?
I'm trying to install praw and nltk libraries into a python shell within AWS Glue 1.0 but can't seem to figure out how to make it work.
For example for praw, I have tried adding '--additional-python-...
2
votes
1
answer
1k
views
Why does setuptools create egg-info for both my project and for "UNKNOWN"
I'm using the flat source model of project organization, in that pyproject.toml and setup.py live at the same level as sampleproj source directory.
sampleproj/
LICENSE.md
pyproject.toml
...
0
votes
1
answer
149
views
Share x-axis and y-axis label on the same combo chart
I need to share x-axis and y-axis label on the same combo chart, using egg::ggarrange,
I tried:
library(ggplot2)
df <- data.frame(
x = 1:10, y1 = 1:10, y2 = (1:10)^2, y3 = (1:10)^3, y4 = (1:10)^4
...
1
vote
0
answers
49
views
How can I start an animation on click
I am trying to create an egg that cracks open, it works, but the animation starts on its own. How can I make it work that the egg only opens when the user clicks on it?
I've tried using jQuery, ...
2
votes
1
answer
5k
views
python setup.py egg_info did not run successfully. WARNING: Ignoring invalid distribution -yaudio
I need some help please... I tried to instal pydictionary and it give me the same errors and warnings. And for anything else the Warning is the same and I can not understand why. I went to that ...
0
votes
1
answer
147
views
Is it possible to get to the code from egg-link?
I made some modifications to the code for a deep learning model implemented in MxNet.
On my local computer, I installed MxNet by conda/pip, so I could just go to the installation folder, where I found ...
Carlo's user avatar
- 1,630
0
votes
0
answers
427
views
Updating egg files in docker container
After making changes to files in my docker container, I type python setup.py install --user to update it. However, it does not update the egg files and I can't see the changes I made on the functions ...