The tag has no usage guidance.

learn more… | top users | synonyms

0
votes
0answers
22 views

Python Module install Error

I am doing a project to implement Modbus client in the Python. I found the package pymodbus. I installed in Windows it works fine , When I installed the package in raspberry Debian Linux, it was ...
0
votes
0answers
20 views

I want to recompile a package with python3

I need to recompile a package on slackware using python3 instead python2.7 I have tried to set a link python3->python but doesn't work. This is the slackbuild wich i use
0
votes
0answers
27 views

Starting a script when a certain usb is inserted problems

I want to start a script when a certain usb flash drive is inserted. I had a python script in my home folder "test.py", I ran lsusb and found the vendorid and productid, I went to udev and made a rule ...
1
vote
2answers
101 views

how to replace a sed/perl expression (change and print only matched line) with a python expression?

I have asked this question to learn how perl could replace sed. Now I want to know how the following commands (which do the same thing) would look like for python: sed -n ...
1
vote
0answers
42 views

Make PyCrust use Python 3

I make successfully python 3.2.3 by opening it through terminal, I make it by alias python="python3" But when I open the PyCrust IDE, it opens up with Python 2.7.3, not 3.2.3. How can I make ...
1
vote
1answer
152 views

CentOs 7 Python Issue “-bash: python: command not found”

I asked this at stackoverflow, but just realized it might be best here. If I need to delete it over there or should not have posted here, please let me know. I am still new to this site. Thanks in ...
1
vote
1answer
102 views

Can't use Python3 Package Installer

I successfully installed Python3's Pip and SetupTool packages by: sudo apt-get install python3-pip but when I try to download/install any package for Python3 by: pip install <package-name> ...
-1
votes
1answer
85 views

Alternative for psutil for ARM processors (raspberry pi) and python3

As I am unable to install psutil to work on raspberry pi on python3, I am looking for any alternative (or a proper way to install it). What I want is to be able to see what's the status of the ...
1
vote
1answer
36 views

Importing Python files from inside folders

On Mac OS X, I can import a .py file named test inside the directory dir by running import dir.test However, on Debian (specifically Raspian) this does not work. What is the alternative?
1
vote
0answers
2k views

“Makefile:29: recipe for target 'siplib.o' failed” - SIP installation

I'm trying to install SIP 4.16.5 for Python 3.4 on Ubuntu GNOME 14.10. I type python3 configure.py and I get the following: This is SIP 4.16.5 for Python 3.4.2 on linux. The SIP code generator will ...
1
vote
1answer
68 views

Cannot compile any software

I have Linux Mint 17. I wanted to compile python 3.4.2 from source. During the ./configure command, everything went well until an error came out. configure: creating ./config.status ./config.status: ...
2
votes
1answer
666 views

Apt broken after upgrading python on 14.04 - No module named 'lsb_release'

I recently needed an updated version of Python3 for a project, so I built it from source; and I believe I made a bit of a mess. All apt based operations now end in an error here: (Reading database ...
0
votes
0answers
371 views

How to install the GTK+2 or GTK+3 tookliks for Python 3 development on Debian?

I want to make a GTK+2 or GTK+3 application in Python 3. For GTK+2, I tried installing PyGTK, but I cannot find any version of PyGTK for Python 3 within Debian's repositories. For GTK+2, I followed ...
2
votes
0answers
290 views

configure python3-tk for manually installed python 3.4 debian wheezy

On wheezy apt packaging python3-tk requires python3.2 & python3 packages. I want python 3.4 and have built it manually. The trouble is I don't know how to get my manual 3.4 build to 'see' the ...