Skip to content
Advertisement

Tag: python-3.x

Pyinstaller creates x-sharedlib file in pop os

I use Pyinstaller in pop os for a python script but it creates a x-sharedlib file that I can only open through terminal. I tried to rename it to exe and run it but nothing happens. How I can make it open by double click? Thank you! Answer Found the solution. I renamed it to .sh changed nautilus preferences to

docker run failed at “python3: can’t open file”

My code is in directory /test-scripts, details structure is as follows. Run the following command in directory /test-scripts. /test-scripts(master)> And my Dockerfile content is as follows. Use $user, $pwd above to replace the real value in this question. In my opinion, the file IssueAnalyzer.py will be copy from current directory /test-scripts to /testdocker, but actually it is not. Please help

Linux CentOS 8 – Pip3 install Mariadb

Currently i’m working on a school project where I have to use MariaDB in a Python3 assignment. I have to build a Python script that connects to a database and put information into it. So said and done, I have created a Python script: But now my real issue is starting. I’m working with a Linux CentOS 8 system, where

module as no attribute – self.variable.function(self) [closed]

Closed. This question needs debugging details. It is not currently accepting answers. Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question. Closed 2 years ago. Improve this question I have a module call pcb_files.py that only have some imports like this

Size of disk/partition in Python is different than linux command

Using: Python 3.7.6 , OS Linux (rmp) I need to extract total and free sizes of disks and partitions in Python. I tried different Python functions to retrieve block size in bytes (the results were the same). Then I compared to results of Linux commands (also in bytes), results were different (Linux commands different than Python). Python functions: Using os.statvfs

Crontab not able to call mailx used via python subPrrocess

I have a python file (say, mail_it.py) in which I have written a function to send the mails. Code is as below:- When I run this python file directly via unix command: It sends the mail. But when I set this file to run via crontab. I get the following error: Thanks in advance! Answer this is a problem with

Azure + gunicorn + flask + Azure Web App Linux: ModuleNotFoundError: No module named ‘flaskr’

the use case I have followed the flask tutorial on those pages: https://flask.palletsprojects.com/en/1.1.x/tutorial/ The project directory is the following : run the web app The web app works by running the script ‘run_app_prod.sh’. the code works on my local machine (ubuntu 20.04) but not on azure web app for linux run_app_prod.sh the flaskr/init.py files the error message Answer I had

Can’t hear sound when audio is being played in Pyglet (Raspberry Pi 4B, Raspbian)

I am running the latest version of Raspbian on the Raspberry Pi with Python 2.7 and 3.7 installed. For a project, I need to implement some spatial/binaural audio file playback capabilities in Python, and Pyglet (version 1.5.6) (https://pypi.org/project/pyglet/, https://github.com/pyglet/pyglet) seems to be the simplest option with least dependencies. However, I am not being able to hear audio output through the

Advertisement