Skip to content Skip to sidebar Skip to footer

How To Install The Library Netifaces For Python3 In Ubuntu 12.04?

I made a program in Python3 which uses the package netifaces, I installed it with pip3 in two computers which had Ubuntu 13.04 and Ubuntu 13.10. However, I need to install it in ot

Solution 1:

Solved!

I had to install the package python3-dev too, then the installation of netifaces from pip3 did not give me an error and now I can use it.

So the whole process (in my case) was:

sudo aptitude install python3-setuptools
sudo easy_install3 pip
sudo aptitude install python3-dev

sudo pip3 install netifaces

Post a Comment for "How To Install The Library Netifaces For Python3 In Ubuntu 12.04?"